Passed
Push — master ( 33cc86...c17e3f )
by Iman
04:11
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('cms_privileges_id')->nullable();
24
-			$table->integer('cms_modules_id')->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('cms_privileges_id')->nullable();
24
+            $table->integer('cms_modules_id')->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/Modules/MenuModule/MenuRepo.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public static function sidebarMenu()
11 11
     {
12
-       $conditions = [
12
+        $conditions = [
13 13
             'cms_privileges' => cbUser()->cms_privileges_id,
14 14
             'parent_id' => 0,
15 15
             'is_active' => 1,
Please login to merge, or discard this patch.