This commit is contained in:
Steffen Schröder
2014-04-27 14:44:40 +02:00
parent d814f7e983
commit b75946e048
44 changed files with 2461 additions and 1038 deletions

View File

@ -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;

View File

@ -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;