예제 #1
0
파일: View.php 프로젝트: rlt3/Stream
 protected function handleMethod()
 {
     // see if Request Method was valid or 405
     try {
         parent::$method = new ReflectionMethod(parent::$view->name, Request::$method);
     } catch (Exception $e) {
         self::jump(405);
     }
 }