Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
45 | protected function createModelFromArray(array $array) |
||
46 | { |
||
47 | $account = new SEPAAccount(); |
||
48 | $account->setIban($array[1]); |
||
49 | $account->setBic($array[2]); |
||
50 | $account->setAccountNumber($array[3]); |
||
51 | $account->setSubAccount($array[4]); |
||
52 | $account->setBlz($array[6]); |
||
53 | |||
54 | return $account; |
||
55 | } |
||
56 | } |
||
57 |