You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/app/Console/Commands/ClearCachedMorphMap.php

53 lines
1.0 KiB

<?php
namespace App\Console\Commands;
use App\Services\MorphModelFinder;
use Illuminate\Console\Command;
class ClearCachedMorphMap extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'morphmap:clear';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Remove the morph map cache file';
/**
* @var MorphModelFinder
*/
private $morphModelFinder;
/**
* Create a new command instance.
*
* @param MorphModelFinder $morphModelFinder
*/
public function __construct(MorphModelFinder $morphModelFinder)
{
parent::__construct();
$this->morphModelFinder = $morphModelFinder;
}
/**
* Execute the console command.
*
* @return void
*/
public function handle(): void
{
@unlink($this->morphModelFinder->getCachePath());
$this->info('Morph map models cache cleared!');
}
}