| 1 | <?php | ||
| 9 | class PartialParts extends Command | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * The console command name. | ||
| 13 | * | ||
| 14 | * @var string | ||
| 15 | */ | ||
| 16 | protected $signature = 'partial-parts'; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * The console command description. | ||
| 20 | * | ||
| 21 | * @var string | ||
| 22 | */ | ||
| 23 | protected $description = 'Show all parts that are used in the application'; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Execute the console command. | ||
| 27 | * | ||
| 28 | * @return int | ||
| 29 | */ | ||
| 30 | public function handle() | ||
| 53 | } | ||
| 54 |