1 | <?php |
||
15 | class MigrationWithTestExtension implements |
||
16 | Migration, |
||
17 | TestExtensionAwareInterface, |
||
18 | DatabasePlatformAwareInterface, |
||
19 | NameGeneratorAwareInterface |
||
20 | { |
||
21 | protected $testExtension; |
||
22 | |||
23 | protected $platform; |
||
24 | |||
25 | protected $nameGenerator; |
||
26 | |||
27 | public function setTestExtension(TestExtension $testExtension) |
||
31 | |||
32 | public function getTestExtension() |
||
36 | |||
37 | public function setDatabasePlatform(AbstractPlatform $platform) |
||
41 | |||
42 | public function getDatabasePlatform() |
||
46 | |||
47 | public function setNameGenerator(DbIdentifierNameGenerator $nameGenerator) |
||
51 | |||
52 | public function getNameGenerator() |
||
56 | |||
57 | public function up(Schema $schema, QueryBag $queries) |
||
60 | } |
||
61 |