Skip to content

Commit b59763f

Browse files
committed
Refactor: Changed order of items in API response
1 parent 291feda commit b59763f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Http/Controllers/Api/VersionController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ public function index(): JsonResponse
1919
return response()->json(
2020
[
2121
'version' => config('version.app_version'),
22-
'full_version' => config('version.full_app_version'),
2322
'build_version' => config('version.build_version'),
24-
'hash_version' => config('version.hash_version')
23+
'hash_version' => config('version.hash_version'),
24+
'full_version' => config('version.full_app_version')
2525
]
2626
);
2727
}

0 commit comments

Comments
 (0)