| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function execute() |
||
| 22 | { |
||
| 23 | $car = Car::createCustom( |
||
| 24 | $this->preparedCar->id, |
||
| 25 | $this->preparedCar->responsiblePerson, |
||
| 26 | $this->preparedCar->model, |
||
| 27 | $this->preparedCar->brand, |
||
| 28 | $this->preparedCar->registrationNumber, |
||
| 29 | $this->preparedCar->productionDate, |
||
| 30 | $this->preparedCar->warrantyPeriod, |
||
| 31 | $this->preparedCar->city, |
||
| 32 | $this->preparedCar->department |
||
| 33 | ); |
||
| 34 | |||
| 35 | $this->carRepository->add($car); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |