mirror of
https://github.com/pelican-dev/panel.git
synced 2026-02-24 11:20:41 +03:00
19 lines
400 B
PHP
19 lines
400 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Overrides;
|
|
|
|
use Illuminate\Foundation\Console\OptimizeCommand as BaseOptimizeCommand;
|
|
|
|
class OptimizeCommand extends BaseOptimizeCommand
|
|
{
|
|
/**
|
|
* Prevent config from being cached
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function getOptimizeTasks()
|
|
{
|
|
return array_except(parent::getOptimizeTasks(), 'config');
|
|
}
|
|
}
|