base-module-after-install-it.php
2 years ago
base-module-dir-it.php
2 years ago
base-module-dir-trait.php
2 years ago
base-module-handle-it.php
2 years ago
base-module-handle-trait.php
2 years ago
base-module-it.php
2 years ago
base-module-static-instance-it.php
2 years ago
base-module-static-instance-trait.php
2 years ago
base-module-url-it.php
2 years ago
base-module-url-trait.php
2 years ago
mock-module.php
2 years ago
module-controller-it.php
2 years ago
module-controller-trait.php
2 years ago
module-tools.php
2 years ago
mock-module.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Components\Module; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | class Mock_Module { |
| 12 | |
| 13 | // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed |
| 14 | public function __call( $name, $arguments ) { |
| 15 | return false; |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |