871fa7b160ce026df46578c26e054633fb8d7e3a
[yaffs-website] / web / core / modules / comment / tests / modules / comment_test / src / Controller / CommentTestController.php
1 <?php
2
3 namespace Drupal\comment_test\Controller;
4
5 use Drupal\comment\CommentInterface;
6 use Drupal\Core\Controller\ControllerBase;
7
8 /**
9  * Controller for the comment_test.module.
10  */
11 class CommentTestController extends ControllerBase {
12
13   /**
14    * Provides a comment report.
15    */
16   public function commentReport(CommentInterface $comment) {
17     return ['#markup' => $this->t('Report for a comment')];
18   }
19
20 }