Including security review as a submodule - with patched for Yaffs.
[yaffs-website] / web / modules / contrib / security_review / tests / modules / security_review_test / src / TestNoStore.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\security_review_test\TestNoStore.
6  */
7
8 namespace Drupal\security_review_test;
9
10 /**
11  * A test security check for testing extensibility.
12  *
13  * Same as Test, but doesn't store findings.
14  */
15 class TestNoStore extends Test {
16
17   /**
18    * {@inheritdoc}
19    */
20   public function getTitle() {
21     return 'Test without storing findings';
22   }
23
24   /**
25    * {@inheritdoc}
26    */
27   public function storesFindings() {
28     return FALSE;
29   }
30
31 }