| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __invoke(SaleCloseCommand $command): Sale |
||
| 23 | { |
||
| 24 | $this->checkRequiredInput($command); |
||
| 25 | $plan = new Plan($command->plan_id, null); |
||
| 26 | $sale = new Sale(null, $command->target, $command->customer, $plan, $command->time); |
||
| 27 | $this->repo->delete($sale); |
||
| 28 | |||
| 29 | return $sale; |
||
| 30 | } |
||
| 42 |