execute() public method

public execute ( )
Beispiel #1
0
 public function execute()
 {
     $this->mkpath('db/config');
     $this->mkpath('db/migration');
     $command = new InitConfCommand();
     $command->application = $this->application;
     $command->execute();
     $command = new BuildConfCommand();
     $command->application = $this->application;
     $command->execute('db/config/database.yml');
 }