| 1 | <?php |
||
| 15 | class RootLoader |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $class; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @invisible |
||
| 24 | * @var ORMInterface |
||
| 25 | */ |
||
| 26 | private $orm; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var SelectQuery |
||
| 30 | */ |
||
| 31 | private $select; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $class |
||
| 35 | * @param ORMInterface $orm |
||
| 36 | */ |
||
| 37 | public function __construct(string $class, ORMInterface $orm) |
||
| 45 | } |