| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | abstract class AbstractCommand extends BaseCommand { |
||
| 26 | |||
| 27 | use TranslatorTrait { |
||
| 28 | setTranslator as public; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Display the footer. |
||
| 33 | * |
||
| 34 | * @param StyleInterface $io The I/O. |
||
| 35 | * @param int $count The count. |
||
| 36 | * @param string $success The success message. |
||
| 37 | * @param string $warning The warning message. |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | protected function displayFooter(StyleInterface $io, int $count, string $success, string $warning): void { |
||
| 47 |