Completed
Push — master ( a8d3e1...8005db )
by Marcin
05:51
created
src/Formatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
         $entry = str_replace(array_keys($replace), array_values($replace), $this->config->entryFormat());
56 56
 
57
-        return preg_replace_callback('(\[user_(\w*)\])', function ($matches) {
57
+        return preg_replace_callback('(\[user_(\w*)\])', function($matches) {
58 58
             return ($user = $this->app['auth']->user()) ? $user->{$matches[1]} : '-';
59 59
         }, $entry);
60 60
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      */
153 153
     protected function removeNewLines($sql)
154 154
     {
155
-        if (! $this->config->newLinesToSpaces()) {
155
+        if (!$this->config->newLinesToSpaces()) {
156 156
             return $sql;
157 157
         }
158 158
 
Please login to merge, or discard this patch.