コード例 #1
0
ファイル: RuntimeContainer.php プロジェクト: khelle/surume
 /**
  * @param CoreInterface $core
  * @return RuntimeInterface
  */
 public function internalBoot(CoreInterface $core)
 {
     $core->registerProvider(new RuntimeProvider($this));
     $core->registerProvider(new RuntimeAutowireProvider());
     return $this->boot($core);
 }
コード例 #2
0
ファイル: ConsoleClient.php プロジェクト: khelle/surume
 /**
  * @param CoreInterface $core
  * @return RuntimeInterface
  */
 public function internalBoot(CoreInterface $core)
 {
     $core->registerProvider(new ConsoleProvider($this));
     return $this->boot($core);
 }