Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
34 | public function __construct( |
||
35 | CredentialsInterface $credentials, |
||
36 | GatewayFactoryInterface $gatewayFactory, |
||
37 | MoneyFormatter $moneyFormatter, |
||
38 | MoneyParser $moneyParser |
||
39 | ) { |
||
40 | $this->credentials = $credentials; |
||
41 | $this->gatewayFactory = $gatewayFactory; |
||
42 | $this->moneyFormatter = $moneyFormatter; |
||
43 | $this->moneyParser = $moneyParser; |
||
44 | $this->gateway = $this->createGateway(); |
||
45 | } |
||
46 | |||
61 |