FML Update

This commit is contained in:
Steffen Schröder
2014-07-03 22:34:47 +02:00
parent edd62f0eb4
commit 8b3667b252
75 changed files with 392 additions and 370 deletions

View File

@ -26,7 +26,7 @@ class FrameInstance extends Control {
*
* @param string $modelId (optional) Frame Model id
* @param string $controlId (optional) Frame id
* @return \FML\Controls\FrameInstance|static
* @return static
*/
public static function create($modelId = null, $controlId = null) {
return new static($modelId, $controlId);
@ -49,7 +49,7 @@ class FrameInstance extends Control {
* Set Frame Model id
*
* @param string $modelId Frame Model id
* @return \FML\Controls\FrameInstance|static
* @return static
*/
public function setModelId($modelId) {
$this->modelId = (string)$modelId;
@ -61,7 +61,7 @@ class FrameInstance extends Control {
* Set Frame Model
*
* @param FrameModel $frameModel Frame Model
* @return \FML\Controls\FrameInstance|static
* @return static
*/
public function setModel(FrameModel $frameModel) {
$this->model = $frameModel;