PluginProbe
Unique Headers / trunk
Unique Headers vtrunk
2.1.3 2.1 2.1.1 2.0.1 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.2 1.2.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.7 1.3.8 1.3.9 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 All 54 releases
unique-headers / vendor / inpsyde / modularity / src / Module / ExecutableModule.php

ExecutableModule.php in Unique Headers trunk, at vendor/inpsyde/modularity/src/Module/ExecutableModule.php

19 lines 595 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare (strict_types=1);
4 namespace RyanHellyer\UniqueHeaders\Vendor\Inpsyde\Modularity\Module;
5
6 use RyanHellyer\UniqueHeaders\Vendor\Psr\Container\ContainerInterface;
7 interface ExecutableModule extends Module
8 {
9 /**
10 * Perform actions with objects retrieved from the container. Usually, adding WordPress hooks.
11 * Return true to signal a success, false to signal a failure.
12 *
13 * @param ContainerInterface $container
14 *
15 * @return bool true when successfully booted, otherwise false.
16 */
17 public function run(ContainerInterface $container): bool;
18 }
19