| Total Complexity | 4 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class PayoneToCustomerBridge implements PayoneToCustomerInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var \Spryker\Client\Customer\CustomerClientInterface |
||
| 16 | */ |
||
| 17 | protected $customerClient; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param \Spryker\Client\Customer\CustomerClientInterface $customerClient |
||
| 21 | */ |
||
| 22 | public function __construct($customerClient) |
||
| 23 | { |
||
| 24 | $this->customerClient = $customerClient; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return \Generated\Shared\Transfer\CustomerTransfer|null |
||
| 29 | */ |
||
| 30 | public function getCustomer() |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return bool |
||
| 37 | */ |
||
| 38 | public function isLoggedIn() |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param \Generated\Shared\Transfer\CustomerTransfer $customerTransfer |
||
| 45 | * |
||
| 46 | * @return \Generated\Shared\Transfer\CustomerTransfer |
||
| 47 | */ |
||
| 48 | public function getCustomerByEmail(CustomerTransfer $customerTransfer) |
||
| 53 |
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