Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / metatag / tests / modules / metatag_test_custom_route / src / Controller / MetatagTestCustomRouteController.php
1 <?php
2
3 namespace Drupal\metatag_test_custom_route\Controller;
4
5 use Drupal\Core\Controller\ControllerBase;
6
7 /**
8  * Testing routes for Metatag tests.
9  */
10 class MetatagTestCustomRouteController extends ControllerBase {
11
12   /**
13    * Constructs a page for integration testing.
14    */
15   public function test() {
16     $render = [
17       '#markup' => $this->t('<p>Hello world!</p>'),
18     ];
19
20     return $render;
21   }
22
23 }