Example #1
0
 /**
  * Checks if method requires login
  *
  * @param $method
  */
 protected function checkMethodForLoginNeed($method)
 {
     if (in_array($method, $this->loginRequired)) {
         $this->request->checkLoggedIn();
     }
 }