Test Failed
Push — master ( 47c2d9...dd4a4a )
by Alexey
04:51
created
system/modules/Ui/appAdminControllers/content/dataManager/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     $type = !empty($colInfo['colParams']['type']) ? $colInfo['colParams']['type'] : 'string';
20 20
     if ($type != 'dataManager') {
21 21
         $table->addRow([
22
-            str_replace(' ',' ',!empty($modelName::$labels[$colName]) ? $modelName::$labels[$colName] : $colName),
22
+            str_replace(' ', ' ', !empty($modelName::$labels[$colName]) ? $modelName::$labels[$colName] : $colName),
23 23
             \Model::resloveTypeValue($item, $colName, true)
24 24
         ]);
25 25
     }
Please login to merge, or discard this patch.
system/Inji/Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
      * @return string
139 139
      */
140 140
     public static function getColValue($object, $valuePath, $convert = false, $manageHref = false) {
141
-        if(is_array($object)){
141
+        if (is_array($object)) {
142 142
             $object = array_shift($object);
143 143
         }
144 144
         if (strpos($valuePath, ':')) {
Please login to merge, or discard this patch.