| 1 | <?php |
||
| 11 | class EntityFactory |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var String Entity class |
||
| 16 | */ |
||
| 17 | protected $entityClass; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $entityClass |
||
| 21 | */ |
||
| 22 | 1 | public function __construct(string $entityClass) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param array $array |
||
| 29 | * |
||
| 30 | * @return Entity |
||
| 31 | */ |
||
| 32 | 1 | public function createFromArray(array $array): Entity |
|
| 64 | } |
||
| 65 |