| 1 | <?php | ||
| 7 | class IdeHelperGenerateCommand extends Command | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * The name and signature of the console command. | ||
| 11 | * | ||
| 12 | * @var string | ||
| 13 | */ | ||
| 14 | protected $signature = 'support:ide-helper-generate | ||
| 15 |         {--p|pure : Do not call "clear-compiled" command}'; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * The console command description. | ||
| 19 | * | ||
| 20 | * @var string | ||
| 21 | */ | ||
| 22 | protected $description = 'Generate new IDE helper files.'; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * Execute the console command. | ||
| 26 | * | ||
| 27 | * @return mixed | ||
| 28 | */ | ||
| 29 | public function handle() | ||
| 41 | } | ||
| 42 |