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 | public static function githubLinksForFreeThemes() { |
||
69 | |||
70 | /** |
||
71 | * @return array |
||
72 | */ |
||
73 | public static function listFreeThemes() { |
||
79 | |||
80 | /** |
||
81 | * @return array |
||
82 | */ |
||
83 | public static function listPaidThemes() { |
||
90 | /** |
||
91 | * @return array |
||
92 | */ |
||
93 | public static function listSupportedThemes() { |
||
97 | } |
This check looks for the generic type
array
as a return type and suggests a more specific type. This type is inferred from the actual code.