Completed
Push — master ( 840246...e2a85e )
by Adam
01:47
created
stub/ValueObject/Age.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     }
19 19
 
20 20
     /**
21
-     * @return int
21
+     * @return string
22 22
      */
23 23
     public function toNative()
24 24
     {
Please login to merge, or discard this patch.
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.