53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Aweos\Resizer\Console;
|
||
|
|
||
|
use Aweos\Resizer\Classes\CacheManager;
|
||
|
use Aweos\Resizer\Lib\StorageMediaPath;
|
||
|
use Illuminate\Console\Command;
|
||
|
use Storage;
|
||
|
use Symfony\Component\Console\Input\InputArgument;
|
||
|
|
||
|
class ResizeCacheClear extends Command
|
||
|
{
|
||
|
/**
|
||
|
* @var string The console command name.
|
||
|
*/
|
||
|
protected $name = 'rcc';
|
||
|
|
||
|
/**
|
||
|
* @var string The console command description.
|
||
|
*/
|
||
|
protected $description = 'Clears cache for a specific file';
|
||
|
|
||
|
/**
|
||
|
* Execute the console command.
|
||
|
* @return void
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
$path = new StorageMediaPath($this->argument('path'));
|
||
|
app(CacheManager::class)->delete($path);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the console command arguments.
|
||
|
* @return array
|
||
|
*/
|
||
|
protected function getArguments()
|
||
|
{
|
||
|
return [
|
||
|
['path', InputArgument::REQUIRED, 'The path on the storage'],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the console command options.
|
||
|
* @return array
|
||
|
*/
|
||
|
protected function getOptions()
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
}
|