Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
hlecorche committed Sep 19, 2023
1 parent 6803920 commit bb13c58
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function crudAction(Request $request, CrudResponseGenerator $crudResponse
return $data;
},
'after_build' => function (Crud $crud, array $data) {
$data['test_before_after_build'] = $data['test_before_after_build'].' AFTER';
$data['test_before_after_build'] .= ' AFTER';

return $data;
},
Expand All @@ -90,7 +90,7 @@ public function ajaxCrudAction(Request $request, CrudResponseGenerator $crudResp
return $data;
},
'after_build' => function (Crud $crud, array $data) {
$data['test_before_after_build'] = $data['test_before_after_build'].' AFTER';
$data['test_before_after_build'] .= ' AFTER';

return $data;
},
Expand Down

0 comments on commit bb13c58

Please sign in to comment.