FilterInterface.php 254 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\Routing;
  3. use Symfony\Cmf\Component\Routing\NestedMatcher\RouteFilterInterface;
  4. /**
  5. * A route filter service to filter down the collection of route instances.
  6. */
  7. interface FilterInterface extends RouteFilterInterface {
  8. }