summaryrefslogtreecommitdiff
path: root/scaffold/Role.php
blob: c89b43ba5e8b7a0fed5c5f0e5b53a169cd06e169 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Role implements \PHPIAC\RoleInterface
{
    public function __invoke(array $config): array
    {
        return [
            (new \PHPIAC\Task())->setModule(new \PHPIAC\Modules\AptModule('zsh')),
        ];
    }
}