Updated from some -dev modules to alpha, beta or full releases
[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
deleted file mode 100644 (file)
index 15a04cf..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-<?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;
-  }
-
-}