예제 #1
0
파일: Facade.php 프로젝트: nora-worker/core
 /** 
  * コンフィグオブジェクトを作成する
  */
 protected function bootConfig($setting = [])
 {
     return parent::bootConfig(['loggers' => ['_default' => [['type' => 'stdout', 'level' => 'debug']]]]);
 }
예제 #2
0
파일: Facade.php 프로젝트: nora-worker/core
 protected function bootConfig()
 {
     $config = parent::bootConfig(['a' => 'hoge', 'b' => 'fuga']);
     return $config;
 }
예제 #3
0
파일: Facade.php 프로젝트: nora-worker/core
 /** 
  * コンフィグオブジェクトを作成する
  */
 protected function bootConfig($setting = [])
 {
     return parent::bootConfig(['logger' => '_default']);
 }