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/CacheMorphMap.php

61 lines
1.2 KiB

<?php
namespace App\Console\Commands;
use App\Services\MorphModelFinder;
use Illuminate\Console\Command;
class CacheMorphMap extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'morphmap:cache';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Create a cache file for faster morph mapping';
/**
* @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
{
$cache = $this->morphModelFinder->getCachePath();
$models = $this->morphModelFinder->getModels();
$map = $this->morphModelFinder->getModelMap($models);
file_put_contents(
$cache,
'<?php return ' . var_export($map, true) . ';'
);
$this->info('Morph map models cached!');
}
}