Passed
Push — main ( 3b5cb1...fc7c57 )
by John
03:52
created
src/Toast.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
     public function debug(mixed $message, string $title = null): Notification
17 17
     {
18
-        if (! is_string($message)) {
19
-            $message = json_encode($message, JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT);
18
+        if ( ! is_string($message)) {
19
+            $message = json_encode($message, JSON_THROW_ON_ERROR|JSON_PRETTY_PRINT);
20 20
         }
21 21
 
22 22
         return new Notification($message, $title, NotificationType::$debug);
Please login to merge, or discard this patch.