Fix StyleCI issues

This commit is contained in:
Matthew Penner 2020-05-21 13:22:32 -06:00
parent fa902cc074
commit a0900b8b94
3 changed files with 4 additions and 2 deletions

View file

@ -233,6 +233,7 @@ class MountController extends Controller
public function deleteEgg(Mount $mount, int $egg_id)
{
$mount->eggs()->detach($egg_id);
return response('', 204);
}
@ -246,6 +247,7 @@ class MountController extends Controller
public function deleteNode(Mount $mount, int $node_id)
{
$mount->nodes()->detach($node_id);
return response('', 204);
}
}