1 | <?php |
||
24 | class SchemaCreateCommand extends Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * @var \Kdyby\Doctrine\Tools\CacheCleaner |
||
29 | * @inject |
||
30 | */ |
||
31 | public $cacheCleaner; |
||
32 | |||
33 | |||
34 | |||
35 | public function __construct() |
||
39 | |||
40 | |||
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | */ |
||
45 | protected function configure() |
||
50 | |||
51 | |||
52 | |||
53 | /** |
||
54 | * {@inheritdoc} |
||
55 | */ |
||
56 | protected function initialize(InputInterface $input, OutputInterface $output) |
||
66 | |||
67 | |||
68 | |||
69 | /** |
||
70 | * {@inheritdoc} |
||
71 | */ |
||
72 | protected function executeSchemaCommand(InputInterface $input, OutputInterface $output, SchemaTool $schemaTool, array $metadatas) |
||
76 | |||
77 | } |
||
78 |