TestRouteSubscriber.php

Same filename in other branches
  1. 4.x tests/modules/devel_test/src/Routing/TestRouteSubscriber.php
  2. 5.x tests/modules/devel_test/src/Routing/TestRouteSubscriber.php

Namespace

Drupal\devel_test\Routing

File

tests/modules/devel_test/src/Routing/TestRouteSubscriber.php

View source
<?php

namespace Drupal\devel_test\Routing;

use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;

/**
 * Router subscriber class for testing purpose.
 */
class TestRouteSubscriber extends RouteSubscriberBase {
    
    /**
     * {@inheritdoc}
     */
    protected function alterRoutes(RouteCollection $collection) {
        \Drupal::state()->set('devel_test_route_rebuild', 'Router rebuild fired');
    }

}

Classes

Title Deprecated Summary
TestRouteSubscriber Router subscriber class for testing purpose.