| 1 | <?php |
||
| 10 | class TestExtension implements DatabasePlatformAwareInterface, NameGeneratorAwareInterface |
||
| 11 | { |
||
| 12 | protected $platform; |
||
| 13 | |||
| 14 | protected $nameGenerator; |
||
| 15 | |||
| 16 | public function setDatabasePlatform(AbstractPlatform $platform) |
||
| 20 | |||
| 21 | public function getDatabasePlatform() |
||
| 25 | |||
| 26 | public function setNameGenerator(DbIdentifierNameGenerator $nameGenerator) |
||
| 30 | |||
| 31 | public function getNameGenerator() |
||
| 35 | } |
||
| 36 |