Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / contextual / tests / modules / contextual_test / src / Controller / TestController.php
1 <?php
2
3 namespace Drupal\contextual_test\Controller;
4
5 /**
6  * Test controller to provide a callback for the contextual link.
7  */
8 class TestController {
9
10   /**
11    * Callback for the contextual link.
12    *
13    * @return array
14    *   Render array.
15    */
16   public function render() {
17     return [
18       '#type' => 'markup',
19       '#markup' => 'Everything is contextual!',
20     ];
21   }
22
23 }