Passed
Push — master ( 9db9c5...16a91b )
by Ferry
05:21
created
src/CBCoreModule/CbRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     {
61 61
         $methods = (new \ReflectionClass($ctrl))->getMethods(\ReflectionMethod::IS_PUBLIC);
62 62
 
63
-        return array_filter($methods, function ($method) {
63
+        return array_filter($methods, function($method) {
64 64
             return ($method->class !== 'Illuminate\Routing\Controller' && $method->name !== 'getIndex');
65 65
         });
66 66
     }
Please login to merge, or discard this patch.
src/CBCoreModule/Search.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
      */
59 59
     private function limitRows($data)
60 60
     {
61
-        $num = (int)$data['limit'] ?: 10;
61
+        $num = (int) $data['limit'] ?: 10;
62 62
         $this->rows->take($num);
63 63
     }
64 64
 
Please login to merge, or discard this patch.
src/Modules/ApiGeneratorModule/AdminColumnsTableController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,15 +24,15 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $this->cbLoader();
26 26
 
27
-        $columns = array_filter(\Schema::getColumnListing($table), function ($colName) {
28
-            return ! (in_array($colName, ['created_at', 'deleted_at', 'updated_at']));
27
+        $columns = array_filter(\Schema::getColumnListing($table), function($colName) {
28
+            return !(in_array($colName, ['created_at', 'deleted_at', 'updated_at']));
29 29
         });
30 30
 
31 31
         $result = [];
32 32
         foreach ($columns as $colName) {
33 33
             $result[] = ['name' => $colName, 'type' => $this->getFieldType($colName, $table)];
34 34
 
35
-            if (! in_array($type, ['list', 'detail']) || ! starts_with($colName, 'id_')) {
35
+            if (!in_array($type, ['list', 'detail']) || !starts_with($colName, 'id_')) {
36 36
                 continue;
37 37
             }
38 38
             $relatedTable = str_after($colName, 'id_');
@@ -73,8 +73,8 @@  discard block
 block discarded – undo
73 73
     private function addRelatedTableColTypes($table, $result)
74 74
     {
75 75
         $columns = DB::getSchemaBuilder()->getColumnListing($table);
76
-        $columns = array_filter($columns, function ($col) {
77
-            return ! FieldDetector::isExceptional($col) && !starts_with($col, 'id_');
76
+        $columns = array_filter($columns, function($col) {
77
+            return !FieldDetector::isExceptional($col) && !starts_with($col, 'id_');
78 78
         });
79 79
 
80 80
         foreach ($columns as $col) {
Please login to merge, or discard this patch.
src/controllers/Helpers/IndexImport.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function validateForImport($file)
69 69
     {
70
-        return Validator::make(['extension' => $file->getClientOriginalExtension(),], ['extension' => 'in:xls,xlsx,csv']);
70
+        return Validator::make(['extension' => $file->getClientOriginalExtension(), ], ['extension' => 'in:xls,xlsx,csv']);
71 71
     }
72 72
 
73 73
     /**
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         $file = base64_decode(request('file'));
84 84
         $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file;
85
-        $rows = Excel::load($file, function ($reader) {
85
+        $rows = Excel::load($file, function($reader) {
86 86
         })->get();
87 87
 
88 88
         //$data_import_column = [];
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         foreach ($selectColumn as $sk => $s) {
128 128
             $colname = $table_columns[$sk];
129 129
 
130
-            if (! DbInspector::isForeignKey($colname) || intval($value->$s)) {
130
+            if (!DbInspector::isForeignKey($colname) || intval($value->$s)) {
131 131
                 $a[$colname] = $value->$s;
132 132
                 continue;
133 133
             }
@@ -175,10 +175,10 @@  discard block
 block discarded – undo
175 175
     {
176 176
         $module = ModulesRepo::getByTableName($table);
177 177
         if (is_null($module)) {
178
-            return ;
178
+            return;
179 179
         }
180 180
         $relation_class = __NAMESPACE__.'\\'.$module->controller;
181
-        if (! class_exists($relation_class)) {
181
+        if (!class_exists($relation_class)) {
182 182
             $relation_class = ctrlNamespace().'\\'.$module->controller;
183 183
         }
184 184
 
Please login to merge, or discard this patch.
src/CBCoreModule/Installer/RequirementChecker.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
         $this->checkLaravelVersion();
26 26
         $this->checkPHPversion();
27 27
 
28
-        $extensions = ['mbstring', 'openssl', 'pdo', 'tokenizer', 'xml', 'gd', 'fileinfo',];
29
-        array_walk($extensions, function ($ext){
28
+        $extensions = ['mbstring', 'openssl', 'pdo', 'tokenizer', 'xml', 'gd', 'fileinfo', ];
29
+        array_walk($extensions, function($ext) {
30 30
             $this->chechExtension($ext);
31 31
         });
32 32
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     private function chechExtension($extension)
76 76
     {
77
-        if (! extension_loaded($extension)) {
77
+        if (!extension_loaded($extension)) {
78 78
             $this->console->info($extension.' extension: [Bad]');
79 79
             return $this->requirements = false;
80 80
         }
Please login to merge, or discard this patch.
src/Modules/FileManagerModule/AdminFileManagerController.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $path = request('path') ? base64_decode(request('path')) : 'uploads';
46 46
         $file = Request::file('userfile');
47
-        if (! $file) {
47
+        if (!$file) {
48 48
             return null;
49 49
         }
50 50
 
51 51
         $fileName = $file->getClientOriginalName();
52 52
 
53
-        if (! FieldDetector::isUploadField($file->getClientOriginalExtension())) {
53
+        if (!FieldDetector::isUploadField($file->getClientOriginalExtension())) {
54 54
             backWithMsg('The file '.$fileName.' type is not allowed!', 'warning');
55 55
         }
56 56
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public function getDeleteFile($file)
71 71
     {
72 72
         $file = base64_decode($file);
73
-        if(Storage::delete($file))
73
+        if (Storage::delete($file))
74 74
             backWithMsg('The file has been deleted!');
75 75
 
76 76
         backWithMsg('The file did not deleted!', 'warning');
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,9 @@
 block discarded – undo
70 70
     public function getDeleteFile($file)
71 71
     {
72 72
         $file = base64_decode($file);
73
-        if(Storage::delete($file))
74
-            backWithMsg('The file has been deleted!');
73
+        if(Storage::delete($file)) {
74
+                    backWithMsg('The file has been deleted!');
75
+        }
75 76
 
76 77
         backWithMsg('The file did not deleted!', 'warning');
77 78
     }
Please login to merge, or discard this patch.
src/routes.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             CbRouter::routeController($module->path, $module->controller);
22 22
         }
23 23
     } catch (Exception $e) {
24
-       dd($e);
24
+        dd($e);
25 25
     }
26 26
 });
27 27
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@  discard block
 block discarded – undo
4 4
 
5 5
 $namespace = cbControllersNS();
6 6
 /* ROUTER FOR UPLOADS */
7
-Route::group(['middleware' => ['web'], 'namespace' => $namespace], function () {
7
+Route::group(['middleware' => ['web'], 'namespace' => $namespace], function() {
8 8
     Route::get('uploads/{one?}/{two?}/{three?}/{four?}/{five?}', ['uses' => 'FileController@getPreview', 'as' => 'fileControllerPreview']);
9 9
 });
10 10
 
11
-Route::group(['middleware' => ['web',\Crocodicstudio\Crudbooster\CBCoreModule\middlewares\CBBackend::class]], function () {
11
+Route::group(['middleware' => ['web', \Crocodicstudio\Crudbooster\CBCoreModule\middlewares\CBBackend::class]], function() {
12 12
     Route::get(cbAdminPath(), '\Crocodicstudio\Crudbooster\Controllers\DashboardController@index')->name('CbDashboard');
13 13
 });
14 14
 
@@ -17,11 +17,11 @@  discard block
 block discarded – undo
17 17
     'middleware' => ['web', \Crocodicstudio\Crudbooster\CBCoreModule\middlewares\CBBackend::class],
18 18
     'prefix' => cbAdminPath(),
19 19
     'namespace' => ctrlNamespace(),
20
-], function () {
20
+], function() {
21 21
     try {
22 22
         $args = request()->server('argv');
23 23
         if ($args && $args !== ['artisan', 'route:list']) {
24
-            return ;
24
+            return;
25 25
         }
26 26
 
27 27
         $modules = DB::table('cms_modules')->where('path', '!=', '')->where('controller', '!=', '')->where('is_protected', 0)->get();
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     'middleware' => ['web', \Crocodicstudio\Crudbooster\CBCoreModule\middlewares\CBSuperadmin::class],
39 39
     'prefix' => cbAdminPath(),
40 40
     'namespace' => $namespace,
41
-], function () {    
41
+], function() {    
42 42
     Route::post('{module}/do-upload-import-data', 'FileController@doUploadImportData')->name('FileControllerDoUploadImportData');
43 43
     Route::post('{module}/upload-summernote', 'FileController@uploadSummernote')->name('FileControllerUploadSummernote');
44 44
     Route::post('{module}/upload-file', 'FileController@uploadFile')->name('FileControllerUploadFile');
Please login to merge, or discard this patch.
src/CBCoreModule/CbUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
     public function myPhoto() : string
41 41
     {
42
-        $photo =  $this->photo ?: 'vendor/crudbooster/avatar.jpg';
42
+        $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg';
43 43
         return asset($photo);
44 44
     }
45 45
 
Please login to merge, or discard this patch.
SettingModule/migrations/2018_03_05_052641_create_cms_settings_table.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -5,36 +5,36 @@
 block discarded – undo
5 5
 
6 6
 class CreateCmsSettingsTable extends Migration {
7 7
 
8
-	/**
9
-	 * Run the migrations.
10
-	 *
11
-	 * @return void
12
-	 */
13
-	public function up()
14
-	{
15
-		Schema::create('cms_settings', function(Blueprint $table)
16
-		{
17
-			$table->increments('id');
18
-			$table->string('name', 50)->nullable();
19
-			$table->text('content', 65535)->nullable();
20
-			$table->string('content_input_type')->nullable();
21
-			$table->string('dataenum')->nullable();
22
-			$table->string('helper')->nullable();
23
-			$table->timestamps();
24
-			$table->string('group_setting', 50)->nullable();
25
-			$table->string('label', 50)->nullable();
26
-		});
27
-	}
8
+    /**
9
+     * Run the migrations.
10
+     *
11
+     * @return void
12
+     */
13
+    public function up()
14
+    {
15
+        Schema::create('cms_settings', function(Blueprint $table)
16
+        {
17
+            $table->increments('id');
18
+            $table->string('name', 50)->nullable();
19
+            $table->text('content', 65535)->nullable();
20
+            $table->string('content_input_type')->nullable();
21
+            $table->string('dataenum')->nullable();
22
+            $table->string('helper')->nullable();
23
+            $table->timestamps();
24
+            $table->string('group_setting', 50)->nullable();
25
+            $table->string('label', 50)->nullable();
26
+        });
27
+    }
28 28
 
29 29
 
30
-	/**
31
-	 * Reverse the migrations.
32
-	 *
33
-	 * @return void
34
-	 */
35
-	public function down()
36
-	{
37
-		Schema::drop('cms_settings');
38
-	}
30
+    /**
31
+     * Reverse the migrations.
32
+     *
33
+     * @return void
34
+     */
35
+    public function down()
36
+    {
37
+        Schema::drop('cms_settings');
38
+    }
39 39
 
40 40
 }
Please login to merge, or discard this patch.