diff options
author | Daniel Weipert <code@drogueronin.de> | 2021-04-19 11:00:28 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2021-04-19 11:00:28 +0200 |
commit | a8ddac7859f7139ce13d244c7dd39fae6ed07db0 (patch) | |
tree | e82d9c961581ecf655ac4091815db43ec06852fe /scaffold |
Initial commit
Diffstat (limited to 'scaffold')
-rw-r--r-- | scaffold/Role.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scaffold/Role.php b/scaffold/Role.php new file mode 100644 index 0000000..c89b43b --- /dev/null +++ b/scaffold/Role.php @@ -0,0 +1,11 @@ +<?php + +class Role implements \PHPIAC\RoleInterface +{ + public function __invoke(array $config): array + { + return [ + (new \PHPIAC\Task())->setModule(new \PHPIAC\Modules\AptModule('zsh')), + ]; + } +} |