Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
1 | <?php namespace Modules\Core\Console\Installers\Traits; |
||
5 | public function blockMessage($title, $message, $style = 'info') |
||
|
|||
6 | { |
||
7 | $formatter = $this->getHelperSet()->get('formatter'); |
||
8 | $errorMessages = [$title, $message]; |
||
9 | $formattedBlock = $formatter->formatBlock($errorMessages, $style, true); |
||
10 | $this->line($formattedBlock); |
||
11 | } |
||
12 | } |
||
13 |