Passed
Push — develop ( 2ab306...3001e5 )
by Benjamin
02:54
created
src/lib/AutoLink.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,9 +124,9 @@
 block discarded – undo
124 124
         }
125 125
         $link = '<a';
126 126
         foreach ($attributes as $key => $val) {
127
-            $link .= ' ' . $key . '="' . $this->escapeHTML($val) . '"';
127
+            $link .= ' '.$key.'="'.$this->escapeHTML($val).'"';
128 128
         }
129
-        $link .= '>' . $text . '</a>';
129
+        $link .= '>'.$text.'</a>';
130 130
         return $link;
131 131
     }
132 132
 
Please login to merge, or discard this patch.