Upgraded drupal core with security updates
[yaffs-website] / web / core / tests / 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 }