Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function run() |
||
15 | { |
||
16 | $abilities = [ |
||
17 | ['name' => 'list-routes', 'title' => 'List Routes'], |
||
18 | ['name' => 'run-terminal', 'title' => 'Run Terminal'], |
||
19 | ]; |
||
20 | |||
21 | collect($abilities)->each(function (array $ability) { |
||
22 | app('cortex.auth.ability')->create($ability); |
||
23 | }); |
||
24 | } |
||
25 | } |
||
26 |