Example #1
0
 /**
  * @param CoreInterface $core
  * @return RuntimeInterface
  */
 public function internalBoot(CoreInterface $core)
 {
     $core->registerProvider(new RuntimeProvider($this));
     $core->registerProvider(new RuntimeAutowireProvider());
     return $this->boot($core);
 }
Example #2
0
 /**
  * @param CoreInterface $core
  * @return RuntimeInterface
  */
 public function internalBoot(CoreInterface $core)
 {
     $core->registerProvider(new ConsoleProvider($this));
     return $this->boot($core);
 }