Version 1
[yaffs-website] / web / core / modules / content_moderation / tests / modules / content_moderation_test_local_task / src / Controller / TestLocalTaskController.php
1 <?php
2
3 namespace Drupal\content_moderation_test_local_task\Controller;
4
5 /**
6  * A test controller.
7  */
8 class TestLocalTaskController {
9
10   /**
11    * A method which does not hint the node parameter to avoid upcasting.
12    */
13   public function methodWithoutUpcastNode($node) {
14     return ['#markup' => 'It works!'];
15   }
16
17 }