protected function setUp()
 {
     parent::setUp();
     $this->nameGenerator = new DbIdentifierNameGenerator();
     $this->executor = new MigrationExecutorWithNameGenerator($this->queryExecutor);
     $this->executor->setLogger($this->logger);
     $this->executor->setNameGenerator($this->nameGenerator);
 }
コード例 #2
0
 protected function setUp()
 {
     parent::setUp();
     $this->executor = new MigrationExecutor($this->queryExecutor);
     $this->executor->setLogger($this->logger);
 }