1 | <?php namespace Modules\Media\Console; |
||
8 | class RefreshThumbnailCommand extends Command |
||
9 | { |
||
10 | use DispatchesJobs; |
||
11 | protected $name = 'asgard:media:refresh'; |
||
12 | protected $description = 'Create and or refresh the thumbnails'; |
||
13 | /** |
||
14 | * @var FileRepository |
||
15 | */ |
||
16 | private $file; |
||
17 | |||
18 | public function __construct(FileRepository $file) |
||
23 | |||
24 | /** |
||
25 | * Execute the console command. |
||
26 | * |
||
27 | * @return mixed |
||
28 | */ |
||
29 | public function fire() |
||
37 | } |
||
38 |