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