| Total Complexity | 2 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | abstract class AbstractSaver implements SaverInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var \SprykerEco\Zed\Computop\Business\Payment\Handler\Logger\ComputopResponseLoggerInterface |
||
| 19 | */ |
||
| 20 | protected $logger; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var \SprykerEco\Zed\Computop\Persistence\ComputopQueryContainerInterface $queryContainer |
||
| 24 | */ |
||
| 25 | protected $queryContainer; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var \SprykerEco\Zed\Computop\ComputopConfig |
||
| 29 | */ |
||
| 30 | protected $config; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param \SprykerEco\Zed\Computop\Persistence\ComputopQueryContainerInterface $queryContainer |
||
| 34 | * @param \SprykerEco\Zed\Computop\Business\Payment\Handler\Logger\ComputopResponseLoggerInterface $logger |
||
| 35 | * @param \SprykerEco\Zed\Computop\ComputopConfig $config |
||
| 36 | */ |
||
| 37 | public function __construct( |
||
| 38 | ComputopQueryContainerInterface $queryContainer, |
||
| 39 | ComputopResponseLoggerInterface $logger, |
||
| 40 | ComputopConfig $config |
||
| 41 | ) { |
||
| 42 | $this->queryContainer = $queryContainer; |
||
| 43 | $this->logger = $logger; |
||
| 44 | $this->config = $config; |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param \Generated\Shared\Transfer\ComputopApiResponseHeaderTransfer $headerTransfer |
||
| 49 | * @param string $method |
||
| 50 | * |
||
| 51 | * @return \Orm\Zed\Computop\Persistence\Base\SpyPaymentComputopApiLog |
||
| 52 | */ |
||
| 53 | protected function logHeader(ComputopApiResponseHeaderTransfer $headerTransfer, $method) |
||
| 56 | } |
||
| 57 | } |
||
| 58 |
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