/**
  * Has a route been registered to this path with an Intent?
  *
  * @return bool
  */
 private function isRouteWithIntent()
 {
     return parent::getMethod() == "POST" && in_array(parent::getPathInfo(), $this->intentRoutes);
 }