1 | <?php namespace Arcanesoft\Foundation\Console; |
||
11 | abstract class Command extends BaseCommand |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Shared Functions |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * Display arcanesoft header. |
||
19 | */ |
||
20 | protected function arcanesoftHeader() |
||
33 | |||
34 | /** |
||
35 | * Get the config repository. |
||
36 | * |
||
37 | * @return \Illuminate\Contracts\Config\Repository |
||
38 | */ |
||
39 | protected function config() |
||
43 | } |
||
44 |