| Total Complexity | 9 |
| Total Lines | 50 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | abstract class Driver implements DriverInterface |
||
| 15 | { |
||
| 16 | private int $total; |
||
| 17 | private int $cursor; |
||
| 18 | private int $chunkSize; |
||
| 19 | protected array $header; |
||
| 20 | |||
| 21 | public function getChunkSize() : int |
||
| 22 | { |
||
| 23 | return $this->chunkSize; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function setChunkSize(int $size) |
||
| 27 | { |
||
| 28 | $this->chunkSize = $size; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getCursor() : int |
||
| 32 | { |
||
| 33 | return $this->cursor; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function setCursor(int $cursor) : void |
||
| 37 | { |
||
| 38 | $this->cursor = $cursor; |
||
| 39 | } |
||
| 40 | |||
| 41 | public function setTotal(int $total) |
||
| 42 | { |
||
| 43 | $this->total = $total; |
||
| 44 | } |
||
| 45 | |||
| 46 | public function getTotal() : int |
||
| 47 | { |
||
| 48 | return $this->total; |
||
| 49 | } |
||
| 50 | |||
| 51 | public function getHeader(): array |
||
| 52 | { |
||
| 53 | return $this->header; |
||
| 54 | } |
||
| 55 | |||
| 56 | public function setHeader(array $columns): void |
||
| 57 | { |
||
| 58 | $this->header = $columns; |
||
| 59 | } |
||
| 60 | |||
| 61 | public function isHeader(): bool |
||
| 64 | } |
||
| 65 | |||
| 66 | } |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths