Exemplo n.º 1
0
 /**
  * Get a specific key from the settings data.
  *
  * @param  string|array $key
  * @param  mixed        $default Optional default value.
  *
  * @return mixed
  */
 public function get($key, $default = null)
 {
     $this->checkLoaded();
     return Arr::get($this->data, $key, $default);
 }