boot() public method

Boot the application.
public boot ( ) : void
return void
Example #1
0
 /**
  * {@inheritdoc}
  */
 public function setUp()
 {
     $this->app = $this->createApplication();
     $this->app->setEnvironment('testing');
     $this->app->boot();
     $this->app->getErrorHandler()->setRethrow(true);
 }