コード例 #1
0
ファイル: Config.php プロジェクト: Doraemons/framework
 /**
  * Get the specified configuration value.
  *
  * @param  string  $key
  * @param  mixed   $default
  * @return mixed
  */
 public function get($key, $default = null)
 {
     return Arr::get($this->items, $key, $default);
 }