Passed
Push — master ( 43d1b6...68e370 )
by Steve
01:15
created
src/FieldBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -278,11 +278,11 @@
 block discarded – undo
278 278
         $id = trim($id, '#');
279 279
         $class = trim($class, '.');
280 280
 
281
-        if (! empty($id)) {
281
+        if (!empty($id)) {
282 282
             $this->setAttr('id', $id);
283 283
         }
284 284
 
285
-        if (! empty($class)) {
285
+        if (!empty($class)) {
286 286
             $class = str_replace('.', ' ', $class);
287 287
             $this->setAttr('class', $class);
288 288
         }
Please login to merge, or discard this patch.