summaryrefslogtreecommitdiff
path: root/src/Module/ModuleInterface.php
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2021-04-18 15:09:51 +0200
committerDaniel Weipert <code@drogueronin.de>2021-04-18 15:09:51 +0200
commitc0ebe78089121c0ad23efb0af32c435bee543a3c (patch)
treedb5e9205bcd7181cfa41543ee8962e9d84cdb481 /src/Module/ModuleInterface.php
Initial commit
Diffstat (limited to 'src/Module/ModuleInterface.php')
-rw-r--r--src/Module/ModuleInterface.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Module/ModuleInterface.php b/src/Module/ModuleInterface.php
new file mode 100644
index 0000000..2963b5f
--- /dev/null
+++ b/src/Module/ModuleInterface.php
@@ -0,0 +1,10 @@
+<?php
+
+namespace PHPIAC\Module;
+
+interface ModuleInterface
+{
+ public function checkState(): bool;
+
+ public function getCommands(): array;
+}