| Total Complexity | 5 |
| Total Lines | 74 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class CalculationTypeColumn extends Select |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var SubSellerRepositoryInterface |
||
|
|
|||
| 22 | */ |
||
| 23 | protected $subSellerRepository; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var SearchCriteriaBuilder |
||
| 27 | */ |
||
| 28 | protected $searchCriteria; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var FilterBuilder |
||
| 32 | */ |
||
| 33 | protected $filterBuilder; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Set "name" for <select> element. |
||
| 37 | * |
||
| 38 | * @param string $value |
||
| 39 | * |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | public function setInputName($value) |
||
| 43 | { |
||
| 44 | return $this->setName($value); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Set "id" for <select> element. |
||
| 49 | * |
||
| 50 | * @param string $value |
||
| 51 | * |
||
| 52 | * @return void |
||
| 53 | */ |
||
| 54 | public function setInputId($value) |
||
| 55 | { |
||
| 56 | return $this->setId($value); |
||
| 57 | } |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Render block HTML. |
||
| 61 | * |
||
| 62 | * @return string |
||
| 63 | */ |
||
| 64 | public function _toHtml(): string |
||
| 71 | } |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Get Options. |
||
| 75 | * |
||
| 76 | * @return array |
||
| 77 | */ |
||
| 78 | public function getSourceOptions(): array |
||
| 92 | } |
||
| 93 | } |
||
| 94 |
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