Passed
Push — main ( bec60e...3fc145 )
by Sammy
03:12 queued 01:40
created
LogLaddy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,12 +116,12 @@
 block discarded – undo
116 116
               array_fill_keys([E_ERROR, E_PARSE, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR], LogLevel::ALERT)
117 117
               + array_fill_keys([E_WARNING, E_CORE_WARNING, E_COMPILE_WARNING, E_USER_WARNING], LogLevel::CRITICAL)
118 118
               + array_fill_keys([E_NOTICE, E_USER_NOTICE], LogLevel::ERROR)
119
-              + array_fill_keys([E_STRICT,E_DEPRECATED,E_USER_DEPRECATED,E_ALL], LogLevel::DEBUG);
119
+              + array_fill_keys([E_STRICT, E_DEPRECATED, E_USER_DEPRECATED, E_ALL], LogLevel::DEBUG);
120 120
 
121 121
         }
122 122
 
123 123
         if (!isset(self::$level_mapping[$level])) {
124
-            throw new \Exception(__FUNCTION__ . "($level): $level is unknown");
124
+            throw new \Exception(__FUNCTION__."($level): $level is unknown");
125 125
         }
126 126
 
127 127
         return self::$level_mapping[$level];
Please login to merge, or discard this patch.