コード例 #1
0
ファイル: Dispatcher.php プロジェクト: phidias-sas/api
 private function setAccessControl()
 {
     $control = new AccessControl();
     foreach ($this->queue as $action) {
         if ($customControl = $action->getAccessControl()) {
             $control->combine($customControl);
         }
     }
     $this->response = $control->filter($this->response, $this->request);
 }