| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class MiscPipe extends AbstractCategorizationPipe |
||
| 14 | { |
||
| 15 | protected int $priority = 100; |
||
| 16 | private MiscCategorizer $categorizer; |
||
| 17 | |||
| 18 | public function __construct() |
||
| 19 | { |
||
| 20 | $this->categorizer = new MiscCategorizer(); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getName(): string |
||
| 26 | } |
||
| 27 | |||
| 28 | protected function categorize(ReleaseContext $context): CategorizationResult |
||
| 34 |