Completed
Push — master ( 4909d1...1b9670 )
by Jean
02:08
created
src/Exceptions/UsageException.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,11 +54,13 @@
 block discarded – undo
54 54
         // var_export($caller);
55 55
 
56 56
         // TODO How to handle perfectly the missing fields of the backtrace?
57
-        if (isset($caller['file']))
58
-            $this->file = $caller['file'];
57
+        if (isset($caller['file'])) {
58
+                    $this->file = $caller['file'];
59
+        }
59 60
 
60
-        if (isset($caller['line']))
61
-            $this->line = $caller['line'];
61
+        if (isset($caller['line'])) {
62
+                    $this->line = $caller['line'];
63
+        }
62 64
 
63 65
         // var_export($this->stack);
64 66
     }
Please login to merge, or discard this patch.