| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 10 | abstract class AbstractStep extends AbstractBusinessPlugin implements StepInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \DataProvider\StepDataDataProvider |
||
| 14 | */ |
||
| 15 | protected $dataProvider; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param \DataProvider\StepDataDataProvider $dataProvider |
||
| 19 | */ |
||
| 20 | 2 | public function setData(StepDataDataProvider $dataProvider): void |
|
| 21 | { |
||
| 22 | 2 | $this->dataProvider = $dataProvider; |
|
| 23 | 2 | } |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return \DataProvider\StepDataDataProvider |
||
| 27 | */ |
||
| 28 | 2 | public function getData(): StepDataDataProvider |
|
| 29 | { |
||
| 30 | 2 | return $this->dataProvider; |
|
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return bool |
||
| 35 | */ |
||
| 36 | 1 | public function ready(): bool |
|
| 39 | } |
||
| 40 | } |
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