5caf5e0d4cee5528bf29d6ea226cdbc6a010600b
[yaffs-website] / Drupal / Tests / Core / Routing / TestRouterInterface.php
1 <?php
2
3 namespace Drupal\Tests\Core\Routing;
4
5 use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
6 use Symfony\Component\Routing\RouterInterface;
7
8 /**
9  * Provides a router interface that also can match requests.
10  */
11 interface TestRouterInterface extends RouterInterface, RequestMatcherInterface {
12 }