| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Nwidart\DbExporter\Commands; |
||
| 20 | protected function blockMessage($title, $message, $style = 'info') |
||
| 21 | { |
||
| 22 | // Symfony style block messages |
||
| 23 | $formatter = $this->getHelperSet()->get('formatter'); |
||
| 24 | $errorMessages = array($title, $message); |
||
| 25 | $formattedBlock = $formatter->formatBlock($errorMessages, $style, true); |
||
| 26 | $this->line($formattedBlock); |
||
| 27 | } |
||
| 28 | |||
| 38 | } |