1 | <?php |
||
8 | class Permissions extends Command |
||
9 | { |
||
10 | /** |
||
11 | * The name and signature of the console command. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'satis:permissions'; |
||
16 | |||
17 | /** |
||
18 | * The console command description. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Sets permissions required for running UI and builder.'; |
||
23 | |||
24 | /** @var Filesystem $filesystem */ |
||
25 | protected $filesystem; |
||
26 | |||
27 | /** |
||
28 | * Create a new command instance. |
||
29 | * |
||
30 | * @param \Illuminate\Filesystem\Filesystem $filesystem |
||
31 | */ |
||
32 | public function __construct(Filesystem $filesystem) { |
||
37 | |||
38 | /** |
||
39 | * Execute the console command. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | public function handle() { |
||
55 | } |
||
56 |