summaryrefslogtreecommitdiff
path: root/src/RoleInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/RoleInterface.php')
-rw-r--r--src/RoleInterface.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/RoleInterface.php b/src/RoleInterface.php
new file mode 100644
index 0000000..009ffc1
--- /dev/null
+++ b/src/RoleInterface.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace PHPIAC\Role;
+
+interface RoleInterface
+{
+ /**
+ * @param array $config
+ *
+ * @return Task[]
+ */
+ public function __invoke(array $config = []): array;
+}