관리-도구
편집 파일: ModuleClearCompiledCommand.php
<?php namespace Nwidart\Modules\Commands; use Illuminate\Console\Command; use Nwidart\Modules\ModuleManifest; /** * @deprecated This command is deprecated and will be removed in the next major version. */ class ModuleClearCompiledCommand extends Command { /** * The console command signature. * * @var string */ protected $signature = 'module:clear-compiled'; /** * The console command description. * * @var string */ protected $description = 'Remove the module compiled class file'; public function handle(ModuleManifest $manifest): void { if (is_file($manifest->manifestPath)) { @unlink($manifest->manifestPath); } $this->components->warn('You may stop calling the `module:clear-compiled` command.'); } }