Skip to content

Commit 345a2c9

Browse files
committed
Fixed home page
Signed-off-by: alexmerlin <[email protected]>
1 parent bc1394e commit 345a2c9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

config/autoload/local.php.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ $databases = [
2121
return [
2222
'application' => [
2323
'name' => 'Dotkernel API',
24-
'version' => 6,
2524
'url' => $baseUrl,
2625
'versioning' => [
2726
'documentation_url' => 'https://docs.dotkernel.org/api-documentation/v5/core-features/versioning',

src/App/src/Handler/GetIndexResourceHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct(
2929
public function handle(ServerRequestInterface $request): ResponseInterface
3030
{
3131
return $this->jsonResponse([
32-
'message' => sprintf('%s version %s', $this->config['name'], $this->config['version']),
32+
'message' => sprintf('%s version 6', $this->config['name']),
3333
]);
3434
}
3535
}

0 commit comments

Comments
 (0)