| 1 | <?php |
||
| 13 | class MultiAuthListThemes extends BaseCommand |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * The name and signature of the console command. |
||
| 18 | * |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | protected $signature = 'make:multi_auth:list_themes'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * The console command description. |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | protected $description = 'list MultiAuthCommand supported themes'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var |
||
| 32 | */ |
||
| 33 | protected $progressBar; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Execute the console command. |
||
| 37 | * |
||
| 38 | * @return boolean |
||
| 39 | */ |
||
| 40 | public function handle() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return array |
||
|
|
|||
| 62 | */ |
||
| 63 | private function listSupportedThemes() { |
||
| 72 | } |
This check looks for the generic type
arrayas a return type and suggests a more specific type. This type is inferred from the actual code.