Example #1
0
 /** 
  * コンフィグオブジェクトを作成する
  */
 protected function bootConfig($setting = [])
 {
     return parent::bootConfig(['loggers' => ['_default' => [['type' => 'stdout', 'level' => 'debug']]]]);
 }
Example #2
0
 protected function bootConfig()
 {
     $config = parent::bootConfig(['a' => 'hoge', 'b' => 'fuga']);
     return $config;
 }
Example #3
0
 /** 
  * コンフィグオブジェクトを作成する
  */
 protected function bootConfig($setting = [])
 {
     return parent::bootConfig(['logger' => '_default']);
 }