| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | public function mapCreditCardCheckData(): CreditCardCheckContainerInterface |
||
| 41 | { |
||
| 42 | $container = new CreditCardCheckContainer($this->utilEncodingService); |
||
| 43 | $this->applyStandardParameter($container); |
||
| 44 | $securityKey = $this->standardParameter->getKey(); |
||
| 45 | $hash = $this->hashGenerator->generateHash($container, $securityKey); |
||
| 46 | |||
| 47 | $container->setHash($hash); |
||
| 48 | |||
| 49 | return $container; |
||
| 50 | } |
||
| 52 |