Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class TransactionMetaVisitorComposite implements TransactionMetaVisitorInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \SprykerEco\Zed\Braintree\Business\Payment\Transaction\MetaVisitor\TransactionMetaVisitorInterface[] |
||
16 | */ |
||
17 | protected $visitor = []; |
||
18 | |||
19 | /** |
||
20 | * @param \SprykerEco\Zed\Braintree\Business\Payment\Transaction\MetaVisitor\TransactionMetaVisitorInterface $visitor |
||
21 | * |
||
22 | * @return $this |
||
23 | */ |
||
24 | public function addVisitor(TransactionMetaVisitorInterface $visitor) |
||
25 | { |
||
26 | $this->visitor[] = $visitor; |
||
27 | |||
28 | return $this; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param \Generated\Shared\Transfer\TransactionMetaTransfer $transactionMetaTransfer |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function visit(TransactionMetaTransfer $transactionMetaTransfer) |
||
40 | } |
||
41 | } |
||
43 |
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