| Total Complexity | 4 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 14 | class AkeneoPimMiddlewareConnectorToProcessFacadeBridge implements AkeneoPimMiddlewareConnectorToProcessFacadeInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var \SprykerMiddleware\Zed\Process\Business\ProcessFacadeInterface |
||
| 18 | */ |
||
| 19 | protected $processFacade; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param \SprykerMiddleware\Zed\Process\Business\ProcessFacadeInterface $processFacade |
||
| 23 | */ |
||
| 24 | public function __construct($processFacade) |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param array $payload |
||
| 31 | * @param \Generated\Shared\Transfer\MapperConfigTransfer $mapperConfigTransfer |
||
| 32 | * |
||
| 33 | * @return array |
||
| 34 | */ |
||
| 35 | public function map(array $payload, MapperConfigTransfer $mapperConfigTransfer): array |
||
| 36 | { |
||
| 37 | return $this->processFacade->map($payload, $mapperConfigTransfer); |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param array $payload |
||
| 42 | * @param \Generated\Shared\Transfer\TranslatorConfigTransfer $translatorConfigTransfer |
||
| 43 | * |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | public function translate(array $payload, TranslatorConfigTransfer $translatorConfigTransfer): array |
||
| 47 | { |
||
| 48 | return $this->processFacade->translate($payload, $translatorConfigTransfer); |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @param array $payload |
||
| 53 | * @param \Generated\Shared\Transfer\ValidatorConfigTransfer $validationConfigTransfer |
||
| 54 | * |
||
| 55 | * @return array |
||
| 56 | */ |
||
| 57 | public function validate(array $payload, ValidatorConfigTransfer $validationConfigTransfer): array |
||
| 60 | } |
||
| 61 | } |
||
| 62 |
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