You are here

TestRouterInterface.php in Drupal 10

File

core/tests/Drupal/Tests/Core/Routing/TestRouterInterface.php
View source
<?php

namespace Drupal\Tests\Core\Routing;

use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
use Symfony\Component\Routing\RouterInterface;

/**
 * Provides a router interface that also can match requests.
 */
interface TestRouterInterface extends RouterInterface, RequestMatcherInterface {

}

Interfaces

Namesort descending Description
TestRouterInterface Provides a router interface that also can match requests.