Example #1
0
 /**
  * Determine if the request is valid
  *
  * @return boolean
  */
 public function isRequestValid()
 {
     if (!$this->request->isParsed()) {
         $this->parseRequest();
     }
     return $this->request->isValid();
 }