Passed
Pull Request — master (#4)
by Aleksey
08:38 queued 04:31
created

FinishOmsCommandClient::performApiCall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * MIT License
5
 * For full license information, please view the LICENSE file that was distributed with this source code.
6
 */
7
8
namespace SprykerEco\Zed\CrefoPay\Business\Oms\Command\CommandClient;
9
10
use Generated\Shared\Transfer\CrefoPayApiRequestTransfer;
0 ignored issues
show
Bug introduced by
The type Generated\Shared\Transfe...foPayApiRequestTransfer was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
11
use Generated\Shared\Transfer\CrefoPayApiResponseTransfer;
0 ignored issues
show
Bug introduced by
The type Generated\Shared\Transfe...oPayApiResponseTransfer was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
12
use SprykerEco\Zed\CrefoPay\Dependency\Facade\CrefoPayToCrefoPayApiFacadeInterface;
13
14
class FinishOmsCommandClient implements CrefoPayOmsCommandClientInterface
15
{
16
    /**
17
     * @var \SprykerEco\Zed\CrefoPay\Dependency\Facade\CrefoPayToCrefoPayApiFacadeInterface
18
     */
19
    protected $crefoPayApiFacade;
20
21
    /**
22
     * @param \SprykerEco\Zed\CrefoPay\Dependency\Facade\CrefoPayToCrefoPayApiFacadeInterface $crefoPayApiFacade
23
     */
24
    public function __construct(
25
        CrefoPayToCrefoPayApiFacadeInterface $crefoPayApiFacade
26
    ) {
27
        $this->crefoPayApiFacade = $crefoPayApiFacade;
28
    }
29
30
    /**
31
     * @param \Generated\Shared\Transfer\CrefoPayApiRequestTransfer $requestTransfer
32
     *
33
     * @return \Generated\Shared\Transfer\CrefoPayApiResponseTransfer
34
     */
35
    public function performApiCall(CrefoPayApiRequestTransfer $requestTransfer): CrefoPayApiResponseTransfer
36
    {
37
        return $this->crefoPayApiFacade->performFinishApiCall($requestTransfer);
38
    }
39
}
40