Example #1
0
 /**
  * Bootstrap constructor.
  */
 public function __construct()
 {
     $this->di = new FactoryDefault();
     $this->app = new Application();
     foreach ($this->loaders as $service) {
         $serviceName = ucfirst($service);
         $this->{'init' . $serviceName}();
     }
     $this->app->setEventsManager($this->di->getShared('eventsManager'));
     $this->di->setShared('app', $this->app);
     $this->app->setDI($this->di);
 }