Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function create(CreateCompany $command): Company |
||
23 | { |
||
24 | return Company::create( |
||
25 | ContactUuid::generate(), |
||
26 | $command->name(), |
||
27 | $command->address(), |
||
28 | $command->zipCode(), |
||
29 | $command->town(), |
||
30 | $command->country(), |
||
31 | $command->phone(), |
||
32 | $command->facsimile(), |
||
33 | $command->email(), |
||
34 | $command->contact(), |
||
35 | $command->gsm() |
||
36 | ); |
||
37 | } |
||
38 | } |
||
39 |