Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
59 | public function toArray() |
||
60 | { |
||
61 | return [ |
||
62 | 'inputType' => 'document-photo', |
||
63 | 'group' => $this->group, |
||
64 | 'data' => [ |
||
65 | 'type' => $this->type, |
||
66 | 'country' => $this->country, |
||
67 | 'region' => $this->region ?? '', |
||
68 | 'page' => $this->page, |
||
69 | 'filename' => $this->getFileName() |
||
70 | ] |
||
71 | ]; |
||
72 | } |
||
73 | } |
||
74 |