| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 21 | public function getDebitResponseTransfer(DebitResponseContainer $responseContainer): DebitResponseTransfer |
||
| 22 | { |
||
| 23 | $result = new DebitResponseTransfer(); |
||
| 24 | $baseResponse = new BaseResponseTransfer(); |
||
| 25 | |||
| 26 | // Fill base response transfer |
||
| 27 | $baseResponse->setErrorCode($responseContainer->getErrorcode()); |
||
| 28 | $baseResponse->setErrorMessage($responseContainer->getErrormessage()); |
||
| 29 | $baseResponse->setCustomerMessage($responseContainer->getCustomermessage()); |
||
| 30 | $baseResponse->setStatus($responseContainer->getStatus()); |
||
| 31 | $baseResponse->setRawResponse($responseContainer->getRawResponse()); |
||
| 32 | |||
| 33 | // Set plain attributes |
||
| 34 | $result->setTxid($responseContainer->getTxid()); |
||
| 35 | $result->setSettleAccount($responseContainer->getSettleaccount()); |
||
| 36 | |||
| 37 | // Set aggregated transfers |
||
| 38 | $result->setBaseResponse($baseResponse); |
||
| 39 | |||
| 40 | return $result; |
||
| 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