RouteFilterInterface.php in Drupal 8
File
core/lib/Drupal/Core/Routing/RouteFilterInterface.php
View source
<?php
namespace Drupal\Core\Routing;
use Symfony\Component\Routing\Route;
@trigger_error('\\Drupal\\Core\\Routing\\RouteFilterInterface is deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. Instead, you should use \\Drupal\\Core\\Routing\\FilterInterface. See https://www.drupal.org/node/2894934', E_USER_DEPRECATED);
interface RouteFilterInterface extends FilterInterface {
public function applies(Route $route);
}
Interfaces
Name |
Description |
RouteFilterInterface Deprecated |
A route filter service to filter down the collection of route instances. |