Skip to content

Commit b3c4cb4

Browse files
committed
More code style fixes
1 parent 660381a commit b3c4cb4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

backend/app/Console/Kernel.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class Kernel extends ConsoleKernel
99
{
10-
1110
/**
1211
* Define the application's command schedule.
1312
*

backend/server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
1515
// built-in PHP web server. This provides a convenient way to test a Laravel
1616
// application without having installed a "real" web server software here.
17-
if ($uri !== '/' && file_exists(__DIR__ . '/public'.$uri)) {
17+
if ($uri !== '/' && file_exists(__DIR__ . '/public' . $uri)) {
1818
return false;
1919
}
2020

0 commit comments

Comments
 (0)