123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace Symfony\Component\Routing\Matcher;
- use Symfony\Component\Routing\RequestContextAwareInterface;
- use Symfony\Component\Routing\Exception\ResourceNotFoundException;
- use Symfony\Component\Routing\Exception\MethodNotAllowedException;
- interface UrlMatcherInterface extends RequestContextAwareInterface
- {
-
- public function match($pathinfo);
- }
|