Completed
Push — master ( 0ed9d0...0089ee )
by Adam
01:40
created
src/Service/Service.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
                 }
64 64
             }
65 65
 
66
-            return $responses ? : null;
66
+            return $responses ?: null;
67 67
         }
68 68
 
69 69
         return $this->buildResponse(
Please login to merge, or discard this patch.
src/Server/Server.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function __construct(BooBooRunner $boobooRunner = null)
28 28
     {
29
-        $this->boobooRunner = $boobooRunner ? : new BooBooRunner([new JsonFormatter(true)]);
29
+        $this->boobooRunner = $boobooRunner ?: new BooBooRunner([new JsonFormatter(true)]);
30 30
     }
31 31
 
32 32
     /**
Please login to merge, or discard this patch.