metatag-8.x-1.x-dev/tests/modules/metatag_test_custom_route/src/Controller/MetatagTestCustomRouteController.php
tests/modules/metatag_test_custom_route/src/Controller/MetatagTestCustomRouteController.php
<?php
namespace Drupal\metatag_test_custom_route\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* Testing routes for Metatag tests.
*/
class MetatagTestCustomRouteController extends ControllerBase {
/**
* Constructs a page for integration testing.
*/
public function test() {
$render = [
'#markup' => '<p>Hello world!</p>',
];
return $render;
}
}
