Exemplo n.º 1
0
 /**
  * Executes before filters.
  *
  * @access  protected
  * @return  mixed
  */
 protected function beforeFilters()
 {
     foreach ($this->route->getBeforeFilters() as $filter) {
         $returnValue = $this->executeFilter($filter);
         if (!empty($returnValue)) {
             return $returnValue;
         }
     }
 }