Passed
Push — dev5a ( 328ab1...cf3a23 )
by Ron
07:38
created
app/Domains/FilesDomain.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             $parts = pathinfo($name);
41 41
             $ext   = isset($parts['extension']) ? ('.'.$parts['extension']) : '';
42 42
             $base = $parts['filename'];
43
-             $number = 0;
43
+                $number = 0;
44 44
 
45 45
             do
46 46
             {
Please login to merge, or discard this patch.
app/Domains/Files/SetFiles.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             $parts = pathinfo($name);
41 41
             $ext   = isset($parts['extension']) ? ('.'.$parts['extension']) : '';
42 42
             $base = $parts['filename'];
43
-             $number = 0;
43
+                $number = 0;
44 44
 
45 45
             do
46 46
             {
Please login to merge, or discard this patch.
app/Domains/Customers/CustomerSearch.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,14 +96,14 @@
 block discarded – undo
96 96
             ->when(isset($searchData->name), function($q) use ($searchData)
97 97
             {
98 98
                 $q->where('name', 'like', '%'.$searchData->name.'%')
99
-                  ->orWhere('cust_id', 'like', '%'.$searchData->name.'%')
100
-                  ->orWhere('dba_name', 'like', '%'.$searchData->name.'%');
99
+                    ->orWhere('cust_id', 'like', '%'.$searchData->name.'%')
100
+                    ->orWhere('dba_name', 'like', '%'.$searchData->name.'%');
101 101
             })
102 102
             //  Search by equipment type
103 103
             ->when($includeSystems, function($q)
104 104
             {
105 105
                 $q->with('CustomerSystems.SystemTypes')
106
-                  ->with('ParentSystems.SystemTypes');
106
+                    ->with('ParentSystems.SystemTypes');
107 107
             })
108 108
             ->paginate($pagination->perPage);
109 109
     }
Please login to merge, or discard this patch.