| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | private function createSupplier(CreateSupplier $command): Supplier |
||
| 43 | { |
||
| 44 | return Supplier::create( |
||
| 45 | ContactUuid::generate(), |
||
| 46 | $command->name(), |
||
| 47 | $command->address(), |
||
| 48 | $command->zipCode(), |
||
| 49 | $command->town(), |
||
| 50 | $command->country(), |
||
| 51 | $command->phone(), |
||
| 52 | $command->facsimile(), |
||
| 53 | $command->email(), |
||
| 54 | $command->contact(), |
||
| 55 | $command->cellPhone(), |
||
| 56 | $command->familyLog(), |
||
| 57 | $command->delayDelivery(), |
||
| 58 | $command->orderDays() |
||
| 59 | ); |
||
| 62 |