Example #1
0
 public function execute(Request $request, Response $response)
 {
     foreach ($this->before_filters as $filter) {
         $result = call_user_func_array($filter, array($response));
         $response->appendContents($result);
         if ($response->hasBeenSent()) {
             return;
         }
     }
     if ($this->matches($request, true, $matches)) {
         array_shift($matches);
         $matches[] = $response;
         $result = call_user_func_array($this->callback, $matches);
         $response->appendContents($result);
         if ($response->hasBeenSent()) {
             return;
         }
     }
     foreach ($this->after_filters as $filter) {
         $result = call_user_func_array($filter, array($response));
         $response->appendContents($result);
         if ($response->hasBeenSent()) {
             return;
         }
     }
 }