| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 42 | public function isRefundPossible(OrderTransfer $orderTransfer): bool |
||
| 43 | { |
||
| 44 | $paymentTransfer = $this->payoneRepository->getPayonePaymentByOrder($orderTransfer); |
||
| 45 | |||
| 46 | if (!$this->paymentDataChecker->isPaymentDataRequired($orderTransfer)) { |
||
| 47 | return true; |
||
| 48 | } |
||
| 49 | |||
| 50 | $paymentDetailTransfer = $paymentTransfer->getPaymentDetail(); |
||
| 51 | |||
| 52 | return $paymentDetailTransfer->getBic() && $paymentDetailTransfer->getIban(); |
||
| 53 | } |
||
| 55 |
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