More updates to stop using dev or alpha or beta versions.
[yaffs-website] / web / modules / contrib / security_review / tests / modules / security_review_test / src / TestNoStore.php
diff --git a/web/modules/contrib/security_review/tests/modules/security_review_test/src/TestNoStore.php b/web/modules/contrib/security_review/tests/modules/security_review_test/src/TestNoStore.php
new file mode 100644 (file)
index 0000000..15a04cf
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+
+namespace Drupal\security_review_test;
+
+/**
+ * A test security check for testing extensibility.
+ *
+ * Same as Test, but doesn't store findings.
+ */
+class TestNoStore extends Test {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getTitle() {
+    return 'Test without storing findings';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function storesFindings() {
+    return FALSE;
+  }
+
+}