Example #1
0
 /**
  * Apply methods to focused checkable
  *
  * @param string $method
  * @param array  $parameters
  *
  * @return $this
  */
 public function __call($method, $parameters)
 {
     $focused = $this->setOnFocused('attributes.' . $method, array_get($parameters, 0));
     if ($focused) {
         return $this;
     }
     return parent::__call($method, $parameters);
 }