Test Failed
Pull Request — master (#10)
by
unknown
01:54
created
src/database/seeds/EpormasCityTableSeeder.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -5,34 +5,34 @@
 block discarded – undo
5 5
 
6 6
 class EpormasCityTableSeeder extends Seeder {
7 7
 
8
-	public function run()
9
-	{
10
-		//DB::table('epormas_city')->delete();
8
+    public function run()
9
+    {
10
+        //DB::table('epormas_city')->delete();
11 11
 
12
-		// create_epormas_city_20171201000000
13
-		EpormasCity::create(array(
14
-				'name' => 'Kabupaten Pandeglang'
15
-			));
16
-		EpormasCity::create(array(
17
-				'name' => 'Kabupaten Lebak'
18
-			));
19
-		EpormasCity::create(array(
20
-				'name' => 'Kabupaten Tangerang'
21
-			));
22
-		EpormasCity::create(array(
23
-				'name' => 'Kabupaten Serang'
24
-			));
25
-		EpormasCity::create(array(
26
-				'name' => 'Kota Tangerang'
27
-			));
28
-		EpormasCity::create(array(
29
-				'name' => 'Kota Cilegon'
30
-			));
31
-		EpormasCity::create(array(
32
-				'name' => 'Kota Serang'
33
-			));
34
-		EpormasCity::create(array(
35
-				'name' => 'Kota Tangerang Selatan'
36
-			));
37
-	}
12
+        // create_epormas_city_20171201000000
13
+        EpormasCity::create(array(
14
+                'name' => 'Kabupaten Pandeglang'
15
+            ));
16
+        EpormasCity::create(array(
17
+                'name' => 'Kabupaten Lebak'
18
+            ));
19
+        EpormasCity::create(array(
20
+                'name' => 'Kabupaten Tangerang'
21
+            ));
22
+        EpormasCity::create(array(
23
+                'name' => 'Kabupaten Serang'
24
+            ));
25
+        EpormasCity::create(array(
26
+                'name' => 'Kota Tangerang'
27
+            ));
28
+        EpormasCity::create(array(
29
+                'name' => 'Kota Cilegon'
30
+            ));
31
+        EpormasCity::create(array(
32
+                'name' => 'Kota Serang'
33
+            ));
34
+        EpormasCity::create(array(
35
+                'name' => 'Kota Tangerang Selatan'
36
+            ));
37
+    }
38 38
 }
Please login to merge, or discard this patch.
src/database/seeds/EpormasCategoryTableSeeder.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 
6 6
 class EpormasCategoryTableSeeder extends Seeder {
7 7
 
8
-	public function run()
9
-	{
10
-		//DB::table('epormas_category')->delete();
8
+    public function run()
9
+    {
10
+        //DB::table('epormas_category')->delete();
11 11
 
12
-		// create_epormas_category_20171201000000
13
-		EpormasCategory::create(array(
14
-				'name' => 'Pendidikan'
15
-			));
16
-	}
12
+        // create_epormas_category_20171201000000
13
+        EpormasCategory::create(array(
14
+                'name' => 'Pendidikan'
15
+            ));
16
+    }
17 17
 }
Please login to merge, or discard this patch.
src/database/seeds/EpormasCounterTableSeeder.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -5,20 +5,20 @@
 block discarded – undo
5 5
 
6 6
 class EpormasCounterTableSeeder extends Seeder {
7 7
 
8
-	public function run()
9
-	{
10
-		//DB::table('epormas_counter')->delete();
8
+    public function run()
9
+    {
10
+        //DB::table('epormas_counter')->delete();
11 11
 
12
-		// create_epormas_counter_20171201000000
13
-		EpormasCounter::create(array(
14
-				'tanggal' => '2017-12-01 00:00:12',
15
-				'count' => 1,
16
-				'via' => 'form',
17
-				'user_id' => 1,
18
-				'tahun' => 2017,
19
-				'bulan' => 12,
20
-				'category_id' => 1,
21
-				'city_id' => 1
22
-			));
23
-	}
12
+        // create_epormas_counter_20171201000000
13
+        EpormasCounter::create(array(
14
+                'tanggal' => '2017-12-01 00:00:12',
15
+                'count' => 1,
16
+                'via' => 'form',
17
+                'user_id' => 1,
18
+                'tahun' => 2017,
19
+                'bulan' => 12,
20
+                'category_id' => 1,
21
+                'city_id' => 1
22
+            ));
23
+    }
24 24
 }
Please login to merge, or discard this patch.