Passed
Push — develop ( d70504...62f718 )
by Daniel
30:09 queued 15:07
created
src/Exceptions/RestException.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      * @return string
24 24
      */
25 25
     public function errorMessage() {
26
-        return $this->e->getMessage();    }
26
+        return $this->e->getMessage(); }
27 27
 }
28 28
 
29 29
 //EOF!
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@  discard block
 block discarded – undo
14 14
 {
15 15
     private $e;
16 16
     
17
-    public function __construct($e) {
17
+    public function __construct($e)
18
+    {
18 19
         $this->e = $e;
19 20
     }
20 21
     
@@ -22,7 +23,8 @@  discard block
 block discarded – undo
22 23
      *
23 24
      * @return string
24 25
      */
25
-    public function errorMessage() {
26
+    public function errorMessage()
27
+    {
26 28
         return $this->e->getMessage();    }
27 29
 }
28 30
 
Please login to merge, or discard this patch.