Exemplo n.º 1
0
 /**
  * @param $items
  *
  * @return mixed
  */
 protected function getArrayable($items)
 {
     if (is_string($items)) {
         $callable = $this->getCallable($items);
         return $this->getArrayable(call_user_func($callable));
     }
     return parent::getArrayable($items);
 }