TrackManiaControl/application/core/Libs/FML/Types/BgColorable.php

22 lines
448 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for Elements with Background Color Attribute
2013-12-31 02:55:19 +01:00
*
* @author steeffeen
2014-04-13 18:21:40 +02:00
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
interface BgColorable {
/**
2013-12-31 02:55:19 +01:00
* Set Background Color
*
2014-01-12 00:51:46 +01:00
* @param string $bgColor Background Color
2014-01-21 20:30:40 +01:00
* @return \FML\Types\BgColorable
*/
public function setBgColor($bgColor);
}