Passed
Push — master ( b16fe5...391857 )
by Jonathan
11:50
created
resources/views/modules/default/uitypes/edit/file.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     @if ($value)
17 17
         <?php
18 18
             $valueParts = explode(';', $value);
19
-            $fileName = $valueParts[0];
19
+            $fileName = $valueParts[ 0 ];
20 20
         ?>
21 21
         <div class="input-field current-file">
22 22
             <div class="file-container">
Please login to merge, or discard this patch.
app/Support/Traits/WithRoles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         foreach ($treeDomainsIds as $treeDomainId) {
45 45
             $_domain = Domain::find($treeDomainId);
46 46
             foreach ($_domain->roles as $role) {
47
-                $roleName = $_domain->id === $domain->id ? $role->name : $_domain->name . ' > ' . $role->name;
47
+                $roleName = $_domain->id === $domain->id ? $role->name : $_domain->name.' > '.$role->name;
48 48
                 $roles[ $role->id ] = $roleName;
49 49
             }
50 50
         }
Please login to merge, or discard this patch.
app/Models/Module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -176,8 +176,8 @@
 block discarded – undo
176 176
             }
177 177
             // Several routes
178 178
             elseif (is_array($this->data->menu)) {
179
-                if (!empty($this->data->menu[0]->route)) {
180
-                    $defaultRoute = $this->data->menu[0]->route;
179
+                if (!empty($this->data->menu[ 0 ]->route)) {
180
+                    $defaultRoute = $this->data->menu[ 0 ]->route;
181 181
                 }
182 182
             }
183 183
         }
Please login to merge, or discard this patch.