Added the Porter Stemmer module to improve searches. This doesn't deal with some...
[yaffs-website] / web / modules / contrib / security_review / tests / modules / security_review_test / src / TestNoStore.php
1 <?php
2
3 namespace Drupal\security_review_test;
4
5 /**
6  * A test security check for testing extensibility.
7  *
8  * Same as Test, but doesn't store findings.
9  */
10 class TestNoStore extends Test {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function getTitle() {
16     return 'Test without storing findings';
17   }
18
19   /**
20    * {@inheritdoc}
21    */
22   public function storesFindings() {
23     return FALSE;
24   }
25
26 }