We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4371762 commit 0d06b47Copy full SHA for 0d06b47
src/Illuminate/Foundation/resources/server.php
@@ -16,8 +16,8 @@
16
$formattedDateTime = date('D M j H:i:s Y');
17
18
$requestMethod = $_SERVER['REQUEST_METHOD'];
19
-$remoteAddress = $_SERVER['REMOTE_ADDR'] . ':' . $_SERVER['REMOTE_PORT'];
+$remoteAddress = $_SERVER['REMOTE_ADDR'].':'.$_SERVER['REMOTE_PORT'];
20
21
-file_put_contents("php://stdout", "[$formattedDateTime] $remoteAddress [$requestMethod] URI: $uri\n");
+file_put_contents('php://stdout', "[$formattedDateTime] $remoteAddress [$requestMethod] URI: $uri\n");
22
23
require_once $publicPath.'/index.php';
0 commit comments