Passed
Push — master ( e9f946...7dc240 )
by Mihail
07:26
created
Apps/View/Admin/default/profile/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         ['text' => $profile->user->email],
47 47
         ['text' => $profile->nick],
48 48
         ['text' => Str::startsWith('0000-', $profile->birthday) ? __('None') : Date::convertToDatetime($profile->birthday)],
49
-        ['text' => ($profile->rating > 0 ? '+' : null) . $profile->rating],
49
+        ['text' => ($profile->rating > 0 ? '+' : null).$profile->rating],
50 50
         ['text' => $actionMenu, 'html' => true, 'properties' => ['class' => 'text-center']]
51 51
     ]);
52 52
 }
Please login to merge, or discard this patch.
Apps/View/Admin/default/profile/field_list.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@
 block discarded – undo
55 55
     $table->row([
56 56
         ['text' => $row->id],
57 57
         ['text' => $row->getLocaled('name')],
58
-        ['text' => '<span class="' . $labelClass . '">' . $row->type . '</span>', 'html' => true],
59
-        ['text' => '<code>' . ($row->reg_cond == 0 ? '!' : null) . 'preg_match("' . $row->reg_exp . '", input)' . '</code>', 'html' => true],
58
+        ['text' => '<span class="'.$labelClass.'">'.$row->type.'</span>', 'html' => true],
59
+        ['text' => '<code>'.($row->reg_cond == 0 ? '!' : null).'preg_match("'.$row->reg_exp.'", input)'.'</code>', 'html' => true],
60 60
         ['text' => $actionMenu, 'html' => true, 'properties' => ['class' => 'text-center']]
61 61
     ]);
62 62
 }
Please login to merge, or discard this patch.