1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Symfony\Component\Routing;
- use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
- use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
- interface RouterInterface extends UrlMatcherInterface, UrlGeneratorInterface
- {
-
- public function getRouteCollection();
- }
|