Added B8Framework to project

This commit is contained in:
Dmitry Khomutov 2016-04-12 23:31:39 +06:00
commit 550e93747c
100 changed files with 7192 additions and 71 deletions

View file

@ -0,0 +1,18 @@
<?php
namespace Generation;
use Generation\Model\Uno;
class ArrayPropertyModel extends Uno
{
public function __construct($initialData = array())
{
$this->_getters['array_property'] = 'getArrayProperty';
self::$sleepable[] = 'array_property';
}
public function getArrayProperty()
{
return array('one' => 'two', 'three' => array('four' => 'five'));
}
}