Passed
Push — master ( 3eb6ea...b5f9b2 )
by Anton
01:44
created
src/Notifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             $recipients = [$recipients];
79 79
         }
80 80
         
81
-        if (!is_array($notifications)){
81
+        if (!is_array($notifications)) {
82 82
             /**
83 83
              * @var $notifications NotificationInterface[]
84 84
              */
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 foreach ($channels as $channel) {
97 97
                     $channelInstance = $this->getChannelInstance($channel);
98 98
                     try {
99
-                        \Yii::info("Sending notification " . get_class($notification) . " to " . get_class($recipient) . " via {$channel}", __METHOD__);
99
+                        \Yii::info("Sending notification ".get_class($notification)." to ".get_class($recipient)." via {$channel}", __METHOD__);
100 100
                         $response = $channelInstance->send($recipient, $notification);
101 101
                     } catch (\Exception $e) {
102 102
                         $response = $e;
Please login to merge, or discard this patch.