Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 1 | public function getCreateData() |
|
33 | { |
||
34 | return [ |
||
35 | 'card' => [ |
||
36 | 1 | 'name' => $this->card->name, |
|
37 | 1 | 'number' => $this->card->number, |
|
38 | 1 | 'expiration_month' => $this->card->expirationMonth, |
|
39 | 1 | 'expiration_year' => $this->card->expirationYear, |
|
40 | 1 | 'city' => $this->card->city, |
|
41 | 1 | 'postal_code' => $this->card->postalCode, |
|
42 | 1 | 'security_code' => $this->card->securityCode, |
|
43 | ], |
||
44 | ]; |
||
45 | } |
||
46 | } |
||
47 |