| 1 | <?php namespace Nord\Lumen\Doctrine\ORM\Console; |
||
| 7 | abstract class DoctrineSchemaCommand extends DoctrineCommand |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var SchemaTool |
||
| 12 | */ |
||
| 13 | private $schemaTool; |
||
| 14 | |||
| 15 | |||
| 16 | /** |
||
| 17 | * DoctrineCommand constructor. |
||
| 18 | * |
||
| 19 | * @param SchemaTool $schemaTool |
||
| 20 | * @param EntityManager $entityManager |
||
| 21 | */ |
||
| 22 | public function __construct(SchemaTool $schemaTool, EntityManager $entityManager) |
||
| 28 | |||
| 29 | |||
| 30 | /** |
||
| 31 | * @return SchemaTool |
||
| 32 | */ |
||
| 33 | protected function getSchemaTool() |
||
| 37 | } |
||
| 38 |