Test Setup Failed
Pull Request — master (#6)
by
unknown
13:18
created
src/Yii2LogMessage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace leinonen\Yii2Monolog;
6 6
 
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
 
132 132
     private function setMessage($message)
133 133
     {
134
-        if (!is_string($message)) {
134
+        if ( ! is_string($message)) {
135 135
             if ($message instanceof \Throwable || $message instanceof \Exception) {
136
-                $message = (string)$message;
136
+                $message = (string) $message;
137 137
             } else {
138 138
                 $message = VarDumper::export($message);
139 139
             }
Please login to merge, or discard this patch.