Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig authored and github-actions[bot] committed Dec 4, 2024
1 parent 38f7e22 commit 2b14ffc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Unit/Controller/QuantityValue/ConvertAllController.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function __construct(
#[DefaultResponses([
HttpResponseCodes::UNAUTHORIZED,
HttpResponseCodes::NOT_FOUND,
HttpResponseCodes::INTERNAL_SERVER_ERROR
HttpResponseCodes::INTERNAL_SERVER_ERROR,
])]
public function covertAll(#[MapQueryString] ConvertAllUnitsParameter $parameters): JsonResponse
{
Expand Down
2 changes: 1 addition & 1 deletion src/Unit/Controller/QuantityValue/ConvertController.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function __construct(
#[DefaultResponses([
HttpResponseCodes::UNAUTHORIZED,
HttpResponseCodes::NOT_FOUND,
HttpResponseCodes::INTERNAL_SERVER_ERROR
HttpResponseCodes::INTERNAL_SERVER_ERROR,
])]
public function convert(#[MapQueryString] ConvertUnitParameter $parameters): JsonResponse
{
Expand Down

0 comments on commit 2b14ffc

Please sign in to comment.