TrackManiaControl/application/core/Libs/FML/Types/BgColorable.php
Steffen Schröder c8d599189c FML Update
2014-06-21 03:18:21 +02:00

22 lines
460 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements with background color attribute
*
* @author steeffeen
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
interface BgColorable {
/**
* Set background color
*
* @param string $bgColor Background color
* @return \FML\Types\BgColorable|static
*/
public function setBgColor($bgColor);
}