예제 #1
0
 /**
  * Has
  *
  * @param string $key Key
  *
  * @return boolean Whether the key exists or not
  */
 public function has($key)
 {
     return Arr::has($this->data, $key);
 }
예제 #2
0
 /**
  * Has Config
  *
  * @param string $key Key
  *
  * @return boolean Whether the key exists or not
  */
 public function hasConfig($key)
 {
     return Arr::has($this->config, $key);
 }