File tree Expand file tree Collapse file tree 4 files changed +45
-1
lines changed Expand file tree Collapse file tree 4 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 249249 ],
250250 'phpdoc_to_comment ' => [
251251 'ignored_tags ' => [
252+ 'covers ' ,
253+ 'coversNothing ' ,
254+ 'dataProvider ' ,
255+ 'deprecated ' ,
256+ 'implements ' ,
257+ 'internal ' ,
252258 'lang ' ,
259+ 'method ' ,
253260 'noinspection ' ,
261+ 'param ' ,
262+ 'property ' ,
263+ 'requires ' ,
264+ 'return ' ,
265+ 'runInSeparateProcess ' ,
266+ 'see ' ,
254267 'var ' ,
255268 ],
256269 ],
Original file line number Diff line number Diff line change 7878
7979 'providers ' => [
8080 App \Providers \AppServiceProvider::class,
81+ Rahul900Day \LaravelConsoleSpinner \LaravelConsoleSpinnerServiceProvider::class,
8182 ],
8283];
Original file line number Diff line number Diff line change 5151
5252 'add ' => [
5353 // ..
54+ Illuminate \Foundation \Console \VendorPublishCommand::class,
5455 ],
5556
5657 /*
7172 Illuminate \Console \Scheduling \ScheduleRunCommand::class,
7273 Illuminate \Console \Scheduling \ScheduleListCommand::class,
7374 Illuminate \Console \Scheduling \ScheduleFinishCommand::class,
74- Illuminate \Foundation \Console \VendorPublishCommand::class,
75+ // Illuminate\Foundation\Console\VendorPublishCommand::class,
7576 LaravelZero \Framework \Commands \StubPublishCommand::class,
7677 ],
7778
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * This file is part of the guanguans/music-dl.
7+ *
8+ * (c) guanguans <ityaozm@gmail.com>
9+ *
10+ * This source file is subject to the MIT license that is bundled.
11+ */
12+
13+ return [
14+ /*
15+ |--------------------------------------------------------------------------
16+ | Hide Commands
17+ |--------------------------------------------------------------------------
18+ |
19+ | This option allows to hide certain commands from the summary output.
20+ | They will still be available in your application. Wildcards are supported
21+ |
22+ | Examples: "make:*", "list"
23+ |
24+ */
25+
26+ 'hide ' => [
27+ 'list ' ,
28+ ],
29+ ];
You can’t perform that action at this time.
0 commit comments