Including security review as a submodule - with patched for Yaffs.
[yaffs-website] / web / modules / contrib / security_review / tests / modules / security_review_test / security_review_test.module
1 <?php
2
3 /**
4  * @file
5  * Module that defines testable security checks for Security Review.
6  */
7
8 use Drupal\security_review_test\Test;
9 use Drupal\security_review_test\TestNoStore;
10
11 /**
12  * Implements hook_security_review_checks().
13  */
14 function security_review_test_security_review_checks() {
15   return [
16     new Test(),
17     new TestNoStore(),
18   ];
19 }