Passed
Push — master ( 5b33aa...3ced8d )
by Ferry
08:41
created
src/helpers/CB.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 {
19 19
 
20 20
     public function getRoleByName($roleName) {
21
-        return $this->find("cb_roles",['name'=>$roleName]);
21
+        return $this->find("cb_roles", ['name'=>$roleName]);
22 22
     }
23 23
 
24 24
     public function fcm() {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     public function getDeveloperUrl($path = null) {
37
-        $path = ($path)?"/".trim($path,"/"):null;
37
+        $path = ($path) ? "/".trim($path, "/") : null;
38 38
         return url(cbConfig("DEV_PATH")).$path;
39 39
     }
40 40
 
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
     }
52 52
 
53 53
     public function getAdminUrl($path = null) {
54
-        $path = ($path)?"/".trim($path,"/"):null;
54
+        $path = ($path) ? "/".trim($path, "/") : null;
55 55
         return url(cbConfig("ADMIN_PATH")).$path;
56 56
     }
57 57
 
58 58
     public function getAppName() {
59
-        return env("APP_NAME","CRUDBOOSTER");
59
+        return env("APP_NAME", "CRUDBOOSTER");
60 60
     }
61 61
 
62 62
     /**
@@ -67,10 +67,10 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $fileData = base64_decode($value);
69 69
         $mime_type = finfo_buffer(finfo_open(), $fileData, FILEINFO_MIME_TYPE);
70
-        if($mime_type) {
71
-            if($mime_type = explode('/', $mime_type)) {
70
+        if ($mime_type) {
71
+            if ($mime_type = explode('/', $mime_type)) {
72 72
                 $ext = $mime_type[1];
73
-                if($ext) {
73
+                if ($ext) {
74 74
                     $filePath = 'uploads/'.date('Y-m');
75 75
                     Storage::makeDirectory($filePath);
76 76
                     $filename = sha1(strRandom(5)).'.'.$ext;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
             $file = request()->file($name);
100 100
             $ext = strtolower($file->getClientOriginalExtension());
101
-            if(in_array($ext,cbConfig("UPLOAD_FILE_EXTENSION_ALLOWED"))) {
101
+            if (in_array($ext, cbConfig("UPLOAD_FILE_EXTENSION_ALLOWED"))) {
102 102
                 $filename = slug(pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME));
103 103
                 $file_path = 'uploads/'.date('Y-m');
104 104
 
@@ -112,14 +112,14 @@  discard block
 block discarded – undo
112 112
                 }
113 113
 
114 114
                 if (Storage::putFileAs($file_path, $file, $filename)) {
115
-                    if($resize_width || $resize_height) {
115
+                    if ($resize_width || $resize_height) {
116 116
                         $this->resizeImage($file_path.'/'.$filename, $resize_width, $resize_height);
117 117
                     }
118 118
                     return $file_path.'/'.$filename;
119 119
                 } else {
120 120
                     throw new \Exception("Something went wrong, file can't upload!");
121 121
                 }
122
-            }else{
122
+            } else {
123 123
                 throw new \Exception("The file format is not allowed!");
124 124
             }
125 125
 
@@ -142,22 +142,22 @@  discard block
 block discarded – undo
142 142
                 $img = Image::make(storage_path('app/'.$file_path.'/'.$filename));
143 143
                 $img->fit($resize_width, $resize_height);
144 144
                 $img->save(storage_path('app/'.$file_path.'/'.$filename), $qty);
145
-            } elseif ($resize_width && ! $resize_height) {
145
+            } elseif ($resize_width && !$resize_height) {
146 146
                 $img = Image::make(storage_path('app/'.$file_path.'/'.$filename));
147
-                $img->resize($resize_width, null, function ($constraint) {
147
+                $img->resize($resize_width, null, function($constraint) {
148 148
                     $constraint->aspectRatio();
149 149
                 });
150 150
                 $img->save(storage_path('app/'.$file_path.'/'.$filename), $qty);
151
-            } elseif (! $resize_width && $resize_height) {
151
+            } elseif (!$resize_width && $resize_height) {
152 152
                 $img = Image::make(storage_path('app/'.$file_path.'/'.$filename));
153
-                $img->resize(null, $resize_height, function ($constraint) {
153
+                $img->resize(null, $resize_height, function($constraint) {
154 154
                     $constraint->aspectRatio();
155 155
                 });
156 156
                 $img->save(storage_path('app/'.$file_path.'/'.$filename), $qty);
157 157
             } else {
158 158
                 $img = Image::make(storage_path('app/'.$file_path.'/'.$filename));
159 159
                 if ($img->width() > 1300) {
160
-                    $img->resize(1300, null, function ($constraint) {
160
+                    $img->resize(1300, null, function($constraint) {
161 161
                         $constraint->aspectRatio();
162 162
                     });
163 163
                 }
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
         $validator = Validator::make($input_arr, $rules, $messages);
270 270
         if ($validator->fails()) {
271 271
             $message = $validator->errors()->all();
272
-            throw new CBValidationException(implode("; ",$message));
272
+            throw new CBValidationException(implode("; ", $message));
273 273
         }
274 274
     }
275 275
 
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     public function findPrimaryKey($table)
282 282
     {
283 283
         $pk = DB::getDoctrineSchemaManager()->listTableDetails($table)->getPrimaryKey();
284
-        if(!$pk) {
284
+        if (!$pk) {
285 285
             return null;
286 286
         }
287 287
         return $pk->getColumns()[0];
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
             $string_parameters_array = explode('&', $string_parameters);
331 331
             foreach ($string_parameters_array as $s) {
332 332
                 $part = explode('=', $s);
333
-                if(isset($part[0]) && isset($part[1])) {
333
+                if (isset($part[0]) && isset($part[1])) {
334 334
                     $name = htmlspecialchars(urldecode($part[0]));
335 335
                     $name = strip_tags($name);
336 336
                     $value = htmlspecialchars(urldecode($part[1]));
@@ -347,16 +347,16 @@  discard block
 block discarded – undo
347 347
 
348 348
 
349 349
     public function routeGet($prefix, $controller) {
350
-        $alias = str_replace("@"," ", $controller);
350
+        $alias = str_replace("@", " ", $controller);
351 351
         $alias = ucwords($alias);
352
-        $alias = str_replace(" ","",$alias);
352
+        $alias = str_replace(" ", "", $alias);
353 353
         Route::get($prefix, ['uses' => $controller, 'as' => $alias]);
354 354
     }
355 355
 
356 356
     public function routePost($prefix, $controller) {
357
-        $alias = str_replace("@"," ", $controller);
357
+        $alias = str_replace("@", " ", $controller);
358 358
         $alias = ucwords($alias);
359
-        $alias = str_replace(" ","",$alias);
359
+        $alias = str_replace(" ", "", $alias);
360 360
         Route::post($prefix, ['uses' => $controller, 'as' => $alias]);
361 361
     }
362 362
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
 
382 382
         $prefix = trim($prefix, '/').'/';
383 383
 
384
-        if(substr($controller,0,1) != "\\") {
384
+        if (substr($controller, 0, 1) != "\\") {
385 385
             $controller = "\App\Http\Controllers\\".$controller;
386 386
         }
387 387
 
Please login to merge, or discard this patch.