| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function convert() |
||
| 18 | { |
||
| 19 | $responseTransfer = new RatepayResponseTransfer(); |
||
| 20 | $responseTransfer |
||
| 21 | ->setTransactionId($this->response->getTransactionId()) |
||
| 22 | ->setTransactionShortId($this->response->getTransactionShortId()) |
||
| 23 | ->setSuccessful($this->response->isSuccessful()) |
||
| 24 | ->setReasonCode($this->response->getReasonCode()) |
||
| 25 | ->setReasonText($this->response->getReasonText()) |
||
| 26 | ->setStatusCode($this->response->getStatusCode()) |
||
| 27 | ->setStatusText($this->response->getStatusText()) |
||
| 28 | ->setResultCode($this->response->getResultCode()) |
||
| 29 | ->setResultText($this->response->getResultText()) |
||
| 30 | ->setCustomerMessage($this->response->getCustomerMessage()) |
||
| 31 | ->setPaymentMethod($this->response->getPaymentMethod()) |
||
| 32 | ->setDescriptor($this->response->getDescriptor()); |
||
| 33 | |||
| 34 | return $responseTransfer; |
||
| 35 | } |
||
| 37 |
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