Esempio n. 1
0
 /**
  * Determine if a key exists in the settings data.
  *
  * @param  string  $key
  *
  * @return bool
  */
 public function has($key)
 {
     $this->checkLoaded();
     return Arr::has($this->data, $key);
 }