Completed
Push — psr3-logger ( bc9e3f )
by Armando
06:24
created
src/TelegramLog.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
     /**
207 207
      * Get the stream handle of the temporary debug output
208 208
      *
209
-     * @return mixed The stream if debug is active, else false
209
+     * @return resource The stream if debug is active, else false
210 210
      */
211 211
     public static function getDebugLogTempStream()
212 212
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -281,7 +281,7 @@
 block discarded – undo
281 281
     {
282 282
         // Get the correct logger instance.
283 283
         $logger = null;
284
-        if (in_array($name, ['emergency', 'alert', 'critical', 'error', 'warning', 'notice', 'info', 'debug',], true)) {
284
+        if (in_array($name, ['emergency', 'alert', 'critical', 'error', 'warning', 'notice', 'info', 'debug', ], true)) {
285 285
             $logger = self::$logger;
286 286
         } elseif ($name === 'update') {
287 287
             $logger = self::$update_logger;
Please login to merge, or discard this patch.