Passed
Push — master ( 7ec57e...c93b57 )
by Iman
04:01
created
migrations/2018_03_05_052641_create_cms_privileges_roles_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 CreateCmsPrivilegesRolesTable extends Migration {
7 7
 
8
-	/**
9
-	 * Run the migrations.
10
-	 *
11
-	 * @return void
12
-	 */
13
-	public function up()
14
-	{
15
-		Schema::create('cms_privileges_roles', function(Blueprint $table)
16
-		{
17
-			$table->increments('id');
18
-			$table->boolean('can_see_module')->nullable();
19
-			$table->boolean('can_create')->nullable();
20
-			$table->boolean('can_read')->nullable();
21
-			$table->boolean('can_edit')->nullable();
22
-			$table->boolean('can_delete')->nullable();
23
-			$table->integer('id_cms_privileges')->nullable();
24
-			$table->integer('id_cms_modules')->nullable();
25
-			$table->timestamps();
26
-		});
27
-	}
8
+    /**
9
+     * Run the migrations.
10
+     *
11
+     * @return void
12
+     */
13
+    public function up()
14
+    {
15
+        Schema::create('cms_privileges_roles', function(Blueprint $table)
16
+        {
17
+            $table->increments('id');
18
+            $table->boolean('can_see_module')->nullable();
19
+            $table->boolean('can_create')->nullable();
20
+            $table->boolean('can_read')->nullable();
21
+            $table->boolean('can_edit')->nullable();
22
+            $table->boolean('can_delete')->nullable();
23
+            $table->integer('id_cms_privileges')->nullable();
24
+            $table->integer('id_cms_modules')->nullable();
25
+            $table->timestamps();
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_privileges_roles');
38
-	}
30
+    /**
31
+     * Reverse the migrations.
32
+     *
33
+     * @return void
34
+     */
35
+    public function down()
36
+    {
37
+        Schema::drop('cms_privileges_roles');
38
+    }
39 39
 
40 40
 }
Please login to merge, or discard this patch.
src/CRUDBoosterServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,13 +55,13 @@  discard block
 block discarded – undo
55 55
             __DIR__.'/CBCoreModule/publieshed_files/readme.txt' => resource_path('views/vendor/crudbooster/type_components/readme.txt'),
56 56
         ], 'cb_type_components');
57 57
 
58
-        if (! file_exists(app_path('Http/Controllers/AdminUsersController.php'))) {
58
+        if (!file_exists(app_path('Http/Controllers/AdminUsersController.php'))) {
59 59
             $this->publishes([__DIR__.'/CBCoreModule/publieshed_files/AdminUsersController.php' => app_path('Http/Controllers/AdminUsersController.php')], 'cb_user_controller');
60 60
         }
61 61
 
62 62
 
63 63
         $this->defineValidationRules();
64
-        $this->loadRoutesFrom( __DIR__.'/routes.php');
64
+        $this->loadRoutesFrom(__DIR__.'/routes.php');
65 65
     }
66 66
 
67 67
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $this->mergeConfigFrom(__DIR__.'/configs/crudbooster.php', 'crudbooster');
75 75
 
76
-        $this->app->singleton('crudbooster', function () {
76
+        $this->app->singleton('crudbooster', function() {
77 77
             return true;
78 78
         });
79 79
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
     private function defineValidationRules()
114 114
     {
115
-        \Validator::extend('alpha_spaces', function ($attribute, $value) {
115
+        \Validator::extend('alpha_spaces', function($attribute, $value) {
116 116
             // This will only accept alpha and spaces.
117 117
             // If you want to accept hyphens use: /^[\pL\s-]+$/u.
118 118
             return preg_match('/^[\pL\s]+$/u', $value);
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
     private function defineAuthGuard()
123 123
     {
124
-        config()->offsetSet('auth.providers.cb_users', ['driver' => 'eloquent', 'model' => CbUser::class,]);
124
+        config()->offsetSet('auth.providers.cb_users', ['driver' => 'eloquent', 'model' => CbUser::class, ]);
125 125
         config()->offsetSet('auth.guards.cbAdmin', ['driver' => 'session', 'provider' => 'cb_users']);
126 126
     }
127 127
 }
Please login to merge, or discard this patch.
src/CBCoreModule/Installer/InstallationCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
         $printer->printHeader();
36 36
 
37
-        if (! ((new RequirementChecker($this))->check())) {
37
+        if (!((new RequirementChecker($this))->check())) {
38 38
             $this->info('Sorry unfortunately your system is not meet with our requirements !');
39 39
             $printer->printFooter(false);
40 40
             $this->info('--');
Please login to merge, or discard this patch.
migrations/2018_03_05_052641_create_cms_apicustom_table.php 1 patch
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -5,42 +5,42 @@
 block discarded – undo
5 5
 
6 6
 class CreateCmsApicustomTable extends Migration {
7 7
 
8
-	/**
9
-	 * Run the migrations.
10
-	 *
11
-	 * @return void
12
-	 */
13
-	public function up()
14
-	{
15
-		Schema::create('cms_apicustom', function(Blueprint $table)
16
-		{
17
-			$table->increments('id');
18
-			$table->string('permalink')->nullable();
19
-			$table->string('tabel', 50)->nullable();
20
-			$table->string('aksi')->nullable();
21
-			$table->string('kolom', 50)->nullable();
22
-			$table->string('orderby')->nullable();
23
-			$table->string('sub_query_1')->nullable();
24
-			$table->string('sql_where')->nullable();
25
-			$table->string('name')->nullable();
26
-			$table->string('keterangan')->nullable();
27
-			$table->string('parameter')->nullable();
28
-			$table->timestamps();
29
-			$table->string('method_type', 25)->nullable();
30
-			$table->text('parameters')->nullable();
31
-			$table->text('responses')->nullable();
32
-		});
33
-	}
8
+    /**
9
+     * Run the migrations.
10
+     *
11
+     * @return void
12
+     */
13
+    public function up()
14
+    {
15
+        Schema::create('cms_apicustom', function(Blueprint $table)
16
+        {
17
+            $table->increments('id');
18
+            $table->string('permalink')->nullable();
19
+            $table->string('tabel', 50)->nullable();
20
+            $table->string('aksi')->nullable();
21
+            $table->string('kolom', 50)->nullable();
22
+            $table->string('orderby')->nullable();
23
+            $table->string('sub_query_1')->nullable();
24
+            $table->string('sql_where')->nullable();
25
+            $table->string('name')->nullable();
26
+            $table->string('keterangan')->nullable();
27
+            $table->string('parameter')->nullable();
28
+            $table->timestamps();
29
+            $table->string('method_type', 25)->nullable();
30
+            $table->text('parameters')->nullable();
31
+            $table->text('responses')->nullable();
32
+        });
33
+    }
34 34
 
35 35
 
36
-	/**
37
-	 * Reverse the migrations.
38
-	 *
39
-	 * @return void
40
-	 */
41
-	public function down()
42
-	{
43
-		Schema::drop('cms_apicustom');
44
-	}
36
+    /**
37
+     * Reverse the migrations.
38
+     *
39
+     * @return void
40
+     */
41
+    public function down()
42
+    {
43
+        Schema::drop('cms_apicustom');
44
+    }
45 45
 
46 46
 }
Please login to merge, or discard this patch.
src/helpers/CRUDBooster.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $table = self::parseSqlTable($table)['table'];
77 77
 
78
-        if (! is_array($id)) {
78
+        if (!is_array($id)) {
79 79
             $id = [DbInspector::findPK($table) => $id];
80 80
         }
81 81
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $controllerName = basename($controllerName);
95 95
         $routeUrl = route($controllerName.'GetIndex');
96 96
 
97
-        if (! $path) {
97
+        if (!$path) {
98 98
             return trim($routeUrl, '/');
99 99
         }
100 100
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     {
120 120
         $tables = DbInspector::listTables();
121 121
 
122
-        $filter = function ($tableName) {
122
+        $filter = function($tableName) {
123 123
 
124 124
             if ($tableName == config('database.migrations')) {
125 125
                 return false;
Please login to merge, or discard this patch.