Passed
Push — master ( 254aa8...8daeee )
by Dmitry
01:41
created
src/Exception/General.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
      *      @param string $message
12 12
      *      @param \Throwable $previous
13 13
      */
14
-    public function __construct($message, \Exception $previous=null, $tracelog=false)
14
+    public function __construct($message, \Exception $previous = null, $tracelog = false)
15 15
     {
16
-        Log::instance()->error($message.(($tracelog)?PHP_EOL.$this->getTraceAsString():null));
16
+        Log::instance()->error($message.(($tracelog) ?PHP_EOL.$this->getTraceAsString() : null));
17 17
         $code = 0;
18 18
         parent::__construct($message, $code, $previous);
19 19
     }
Please login to merge, or discard this patch.