| Total Complexity | 3 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class MarkdownPipedToSymfonyConsoleFormatter implements OutputFormatter |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var OutputInterface |
||
| 14 | */ |
||
| 15 | private $output; |
||
| 16 | |||
| 17 | public function __construct(OutputInterface $output) |
||
| 18 | { |
||
| 19 | $this->output = $output; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function write(Changes $changes) : void |
||
| 47 | )) |
||
| 48 | ); |
||
| 49 | } |
||
| 50 | |||
| 51 | private function convertFilteredChangesToMarkdownBulletList(callable $filterFunction, Change ...$changes) : array |
||
| 58 | ); |
||
| 59 | } |
||
| 61 |