Updated FML to newest version

This commit is contained in:
Jocy
2017-04-02 16:55:33 +02:00
parent c5926aded2
commit 4285128795
2 changed files with 515 additions and 0 deletions

View File

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