| Total Complexity | 4 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | abstract class AbstractCategorizer implements CategorizerInterface |
||
| 7 | { |
||
| 8 | protected int $priority = 50; |
||
| 9 | public function getPriority(): int { return $this->priority; } |
||
| 10 | public function shouldSkip(ReleaseContext $context): bool { return false; } |
||
| 11 | protected function matched(int $categoryId, float $confidence, string $matchedBy, array $debug = []): CategorizationResult |
||
| 14 | } |
||
| 15 | protected function noMatch(): CategorizationResult { return CategorizationResult::noMatch(); } |
||
| 16 | } |
||
| 17 |