Completed
Push — master ( a7c9d2...2e8aa2 )
by joseph
9s
created
src/StaticRouter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
         $contentType = $contentType ?? mime_content_type($fileResponse);
158 158
         $this->addCallbackRoute(
159 159
             $uri,
160
-            function (Request $request) use ($fileResponse, $contentType): Response {
160
+            function(Request $request) use ($fileResponse, $contentType): Response {
161 161
 
162 162
                 $response = new Response(file_get_contents($fileResponse));
163 163
                 $response->prepare($request);
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
     {
210 210
         $this->addCallbackRoute(
211 211
             $uri,
212
-            function (Request $request) use ($pathToFile): Response {
212
+            function(Request $request) use ($pathToFile): Response {
213 213
                 $response = new BinaryFileResponse($pathToFile);
214 214
                 $response->setContentDisposition(
215 215
                     ResponseHeaderBag::DISPOSITION_ATTACHMENT,
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
             'server' => $request->server->all(),
358 358
             'files'  => $request->files->all(),
359 359
         ];
360
-        $uri         = $request->getRequestUri();
360
+        $uri = $request->getRequestUri();
361 361
         if (true === $this->verbose) {
362 362
             file_put_contents('php://stderr', "\nRequest: $uri\n".var_export($output, true));
363 363
         }
Please login to merge, or discard this patch.
src/MockServerConfig.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public const DEFAULT_HTDOCS_PATH = '/tests/MockServer/htdocs';
31 31
 
32 32
     public const KEY_LOGS_PATH     = 'MockServer_LogsPath';
33
-    public const DEFAULT_LOGS_PATH = __DIR__ . '/../var/logs/';
33
+    public const DEFAULT_LOGS_PATH = __DIR__.'/../var/logs/';
34 34
 
35 35
 
36 36
     /**
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
         );
57 57
         if (0 !== $exitCode) {
58 58
             throw new MockServerException(
59
-                'Failed getting mock server IP, got exit code ' . $exitCode . ' and output: '
60
-                . "\n" . implode("\n", $output)
59
+                'Failed getting mock server IP, got exit code '.$exitCode.' and output: '
60
+                . "\n".implode("\n", $output)
61 61
             );
62 62
         }
63 63
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     public static function getRouterPath(): string
73 73
     {
74
-        return $_SERVER[self::KEY_ROUTER_PATH] ?? self::getPathToProjectRoot() . '/' . self::DEFAULT_ROUTER_PATH;
74
+        return $_SERVER[self::KEY_ROUTER_PATH] ?? self::getPathToProjectRoot().'/'.self::DEFAULT_ROUTER_PATH;
75 75
     }
76 76
 
77 77
     /**
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 
86 86
             return \dirname($reflection->getFileName(), 3);
87 87
         } catch (\Exception $e) {
88
-            throw new MockServerException('Exception in ' . __METHOD__, $e->getCode(), $e);
88
+            throw new MockServerException('Exception in '.__METHOD__, $e->getCode(), $e);
89 89
         }
90 90
     }
91 91
 
92 92
     public static function getHtdocsPath(): string
93 93
     {
94
-        return $_SERVER[self::KEY_HTDOCS_PATH] ?? self::getPathToProjectRoot() . '/' . self::DEFAULT_HTDOCS_PATH;
94
+        return $_SERVER[self::KEY_HTDOCS_PATH] ?? self::getPathToProjectRoot().'/'.self::DEFAULT_HTDOCS_PATH;
95 95
     }
96 96
 
97 97
     public static function getLogsPath(): string
Please login to merge, or discard this patch.