Ejemplo n.º 1
0
 /**
  * Checks whether the request matches with this route
  *
  * @param \Pushy\Network\Http\RequestData $request The request to match
  *
  * @return boolean True when the route matches the request
  */
 public function doesRequestMatch(RequestData $request)
 {
     return $this->doesMethodMatch($request->getMethod()) && $this->doesPathMatch($request->getPath());
 }