Completed
Pull Request — master (#12)
by Tomáš
05:23 queued 02:38
created
src/HttpServer/HttpServer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         $this->port = $port;
73 73
 
74
-        $this->reactHttpServer->on('request', function (Request $request, Response $response) {
74
+        $this->reactHttpServer->on('request', function(Request $request, Response $response) {
75 75
             $path = $this->outputDirectory.'/'.ltrim(rawurldecode($request->getPath()), '/');
76 76
             if (is_dir($path)) {
77 77
                 $path .= '/index.html';
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/CustomMimeTypesRepositoryPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         }
53 53
 
54 54
         foreach ($data as $type => $extensions) {
55
-            $data[$type] = array_filter($extensions, function ($var) {
55
+            $data[$type] = array_filter($extensions, function($var) {
56 56
                 return strlen($var) > 0;
57 57
             });
58 58
         }
Please login to merge, or discard this patch.
src/SculpinBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     protected function getServicesFile() : string
21 21
     {
22
-        return __DIR__ . '/Resources/config/services.yml';
22
+        return __DIR__.'/Resources/config/services.yml';
23 23
     }
24 24
 
25 25
     public function getConfiguration() : ConfigurationInterface
Please login to merge, or discard this patch.