| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 9 | class MoviesProcessor |
||
| 10 | { |
||
| 11 | private bool $echooutput; |
||
| 12 | |||
| 13 | public function __construct(bool $echooutput) |
||
| 14 | { |
||
| 15 | $this->echooutput = $echooutput; |
||
| 16 | } |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param int|string|null $processMovies 0/1/2 or '' to read from settings |
||
| 20 | * |
||
| 21 | * @throws GuzzleException |
||
| 22 | */ |
||
| 23 | public function process(string $groupID = '', string $guidChar = '', int|string|null $processMovies = ''): void |
||
| 28 | } |
||
| 29 | } |
||
| 31 |