| Conditions | 2 |
| Paths | 2 |
| Total Lines | 35 |
| Code Lines | 29 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | protected function createOffer() |
||
| 37 | { |
||
| 38 | return (new OfferCustom()) |
||
| 39 | ->setTypePrefix($this->faker->colorName) |
||
| 40 | ->setVendor($this->faker->company) |
||
| 41 | ->setVendorCode($this->faker->companySuffix) |
||
| 42 | ->setModel($this->faker->userName) |
||
| 43 | ->addParam( |
||
| 44 | (new OfferParam()) |
||
| 45 | ->setName($this->faker->name) |
||
| 46 | ->setUnit($this->faker->text(5)) |
||
| 47 | ->setValue($this->faker->text(10)) |
||
| 48 | ) |
||
| 49 | ; |
||
| 50 | } |
||
| 51 | } |
||
| 52 |