1 | <?php namespace Anomaly\Streams\Platform\Asset\Console; |
||
15 | class Clear extends Command |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * The console command name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $name = 'assets:clear'; |
||
24 | |||
25 | /** |
||
26 | * The console command description. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $description = 'Clear compiled public assets.'; |
||
31 | |||
32 | /** |
||
33 | * Execute the console command. |
||
34 | * |
||
35 | * @param Filesystem $files |
||
36 | * @param Application $application |
||
37 | */ |
||
38 | public function fire(Filesystem $files, Application $application) |
||
50 | |||
51 | /** |
||
52 | * Get the console command arguments. |
||
53 | * |
||
54 | * @return array |
||
55 | */ |
||
56 | protected function getArguments() |
||
62 | } |
||
63 |