Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
26 | public function handle(UpdateProjectTeamCommand $command) |
||
27 | { |
||
28 | $team = $command->team; |
||
29 | $team->update([ |
||
30 | 'name' => $command->name, |
||
31 | 'slug' => $command->slug, |
||
32 | 'order' => $command->order, |
||
33 | ]); |
||
34 | |||
35 | event(new ProjectTeamWasUpdatedEvent($team)); |
||
36 | |||
37 | return $team; |
||
38 | } |
||
39 | } |
||
40 |