File tree Expand file tree Collapse file tree 5 files changed +5
-1
lines changed Expand file tree Collapse file tree 5 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -483,6 +483,7 @@ There are a number of pre-defined built-in styles that allows you granular custo
483
483
- help_summary
484
484
- help_text
485
485
- info
486
+ - logo
486
487
- ok
487
488
- question
488
489
- version
Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ public function showHelp(): mixed
353
353
$ footer = 'Run `<command> --help` for specific help ' ;
354
354
355
355
if ($ this ->logo ) {
356
- $ writer ->write ($ this ->logo , true );
356
+ $ writer ->logo ($ this ->logo , true );
357
357
}
358
358
359
359
$ this ->outputHelper ()->showCommandsHelp ($ this ->commands (), $ header , $ footer );
Original file line number Diff line number Diff line change 159
159
* @method Writer help_summary($text, $eol = false)
160
160
* @method Writer help_text($text, $eol = false)
161
161
* @method Writer info($text, $eol = false)
162
+ * @method Writer logo($text, $eol = false)
162
163
* @method Writer ok($text, $eol = false)
163
164
* @method Writer purple($text, $eol = false)
164
165
* @method Writer purpleBgBlack($text, $eol = false)
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ class Color
68
68
'help_summary ' => ['fg ' => 37 , 'mod ' => 2 ],
69
69
'help_text ' => ['fg ' => 37 , 'mod ' => 1 ],
70
70
'info ' => ['fg ' => 34 ],
71
+ 'logo ' => ['fg ' => 37 ],
71
72
'ok ' => ['fg ' => 32 ],
72
73
'question ' => ['fg ' => 33 ],
73
74
'version ' => ['fg ' => 37 , 'mod ' => 1 ],
Original file line number Diff line number Diff line change 155
155
* @method Writer help_summary($text, $eol = false)
156
156
* @method Writer help_text($text, $eol = false)
157
157
* @method Writer info($text, $eol = false)
158
+ * @method Writer logo($text, $eol = false)
158
159
* @method Writer ok($text, $eol = false)
159
160
* @method Writer purple($text, $eol = false)
160
161
* @method Writer purpleBgBlack($text, $eol = false)
You can’t perform that action at this time.
0 commit comments