FML 1.1
This commit is contained in:
@ -45,7 +45,6 @@ class Format implements BgColorable, Renderable, Styleable, TextFormatable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\BgColorable::setBgColor()
|
||||
* @return \FML\Elements\Format
|
||||
*/
|
||||
public function setBgColor($bgColor) {
|
||||
$this->bgColor = (string) $bgColor;
|
||||
@ -55,7 +54,6 @@ class Format implements BgColorable, Renderable, Styleable, TextFormatable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\Styleable::setStyle()
|
||||
* @return \FML\Elements\Format
|
||||
*/
|
||||
public function setStyle($style) {
|
||||
$this->style = (string) $style;
|
||||
@ -65,7 +63,6 @@ class Format implements BgColorable, Renderable, Styleable, TextFormatable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\TextFormatable::setTextSize()
|
||||
* @return \FML\Elements\Format
|
||||
*/
|
||||
public function setTextSize($textSize) {
|
||||
$this->textSize = (int) $textSize;
|
||||
@ -75,7 +72,6 @@ class Format implements BgColorable, Renderable, Styleable, TextFormatable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\TextFormatable::setTextColor()
|
||||
* @return \FML\Elements\Format
|
||||
*/
|
||||
public function setTextColor($textColor) {
|
||||
$this->textColor = (string) $textColor;
|
||||
@ -85,7 +81,6 @@ class Format implements BgColorable, Renderable, Styleable, TextFormatable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\TextFormatable::setAreaColor()
|
||||
* @return \FML\Elements\Format
|
||||
*/
|
||||
public function setAreaColor($areaColor) {
|
||||
$this->focusAreaColor1 = (string) $areaColor;
|
||||
@ -95,7 +90,6 @@ class Format implements BgColorable, Renderable, Styleable, TextFormatable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\TextFormatable::setAreaFocusColor()
|
||||
* @return \FML\Elements\Format
|
||||
*/
|
||||
public function setAreaFocusColor($areaFocusColor) {
|
||||
$this->focusAreaColor2 = (string) $areaFocusColor;
|
||||
|
@ -57,7 +57,6 @@ class FrameModel implements Container, Renderable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\Container::add()
|
||||
* @return \FML\Elements\FrameModel
|
||||
*/
|
||||
public function add(Control $childControl) {
|
||||
if (!in_array($childControl, $this->children, true)) {
|
||||
@ -69,7 +68,6 @@ class FrameModel implements Container, Renderable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\Container::removeChildren()
|
||||
* @return \FML\Elements\FrameModel
|
||||
*/
|
||||
public function removeChildren() {
|
||||
$this->children = array();
|
||||
@ -79,7 +77,6 @@ class FrameModel implements Container, Renderable {
|
||||
/**
|
||||
*
|
||||
* @see \FML\Types\Container::setFormat()
|
||||
* @return \FML\Elements\FrameModel
|
||||
*/
|
||||
public function setFormat(Format $format) {
|
||||
$this->format = $format;
|
||||
|
Reference in New Issue
Block a user