Total Complexity | 2 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class CaptureSplitOmsCommand implements CrefoPayOmsCommandByItemInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var \SprykerEco\Zed\CrefoPay\Communication\Oms\CrefoPayOmsMapperInterface |
||
19 | */ |
||
20 | protected $mapper; |
||
21 | |||
22 | /** |
||
23 | * @var \SprykerEco\Zed\CrefoPay\Business\CrefoPayFacadeInterface |
||
24 | */ |
||
25 | protected $facade; |
||
26 | |||
27 | /** |
||
28 | * @param \SprykerEco\Zed\CrefoPay\Communication\Oms\CrefoPayOmsMapperInterface $mapper |
||
29 | * @param \SprykerEco\Zed\CrefoPay\Business\CrefoPayFacadeInterface $facade |
||
30 | */ |
||
31 | public function __construct( |
||
32 | CrefoPayOmsMapperInterface $mapper, |
||
33 | CrefoPayFacadeInterface $facade |
||
34 | ) { |
||
35 | $this->mapper = $mapper; |
||
36 | $this->facade = $facade; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param \Orm\Zed\Sales\Persistence\SpySalesOrderItem $salesOrderItem |
||
41 | * @param \Spryker\Zed\Oms\Business\Util\ReadOnlyArrayObject $data |
||
42 | * |
||
43 | * @return void |
||
44 | */ |
||
45 | public function execute(SpySalesOrderItem $salesOrderItem, ReadOnlyArrayObject $data): void |
||
52 | } |
||
53 | } |
||
54 |
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