| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | class TvProcessor |
||
| 12 | { |
||
| 13 | private bool $echooutput; |
||
| 14 | |||
| 15 | public function __construct(bool $echooutput) |
||
| 16 | { |
||
| 17 | $this->echooutput = $echooutput; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Process all TV related releases across supported providers. |
||
| 22 | * |
||
| 23 | * @param int|string|null $processTV 0/1/2 or '' to read from settings |
||
| 24 | */ |
||
| 25 | public function process(string $groupID = '', string $guidChar = '', int|string|null $processTV = ''): void |
||
| 33 | } |
||
| 34 | } |
||
| 36 |