This commit is contained in:
Fabien Potencier 2014-08-27 10:36:12 +02:00
parent 9182904f6f
commit df244f27e6

View File

@ -93,7 +93,7 @@ class UrlMatcher implements UrlMatcherInterface, RequestMatcherInterface
throw 0 < count($this->allow) throw 0 < count($this->allow)
? new MethodNotAllowedException(array_unique(array_map('strtoupper', $this->allow))) ? new MethodNotAllowedException(array_unique(array_map('strtoupper', $this->allow)))
: new ResourceNotFoundException(sprintf('No routes found for %s.', $pathinfo)); : new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
} }
/** /**