Пример #1
0
 /**
  * Set parameters
  * @param $method
  * @return $this
  */
 function configure($method)
 {
     if (is_array($method)) {
         $this->config->merge($method);
     } elseif ($method instanceof Closure) {
         $method($this->config);
     }
     return $this;
 }