Skip to content

Commit

Permalink
Remove extra parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
vboctor committed Sep 6, 2023
1 parent d4e8571 commit 8fac62f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/rest/restcore/config_rest.php
Expand Up @@ -48,7 +48,7 @@ function rest_config_get( \Slim\Http\Request $p_request, \Slim\Http\Response $p_
);

$t_command = new ConfigsGetCommand( $t_data );
$t_result = $t_command->execute( $t_data );
$t_result = $t_command->execute();

return $p_response->withStatus( HTTP_STATUS_SUCCESS )->withJson( $t_result );
}
Expand Down

0 comments on commit 8fac62f

Please sign in to comment.