Passed
Pull Request — master (#2401)
by
unknown
09:16
created
app/Forms/Builders/NoteForm.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,14 +20,14 @@
 block discarded – undo
20 20
     public function create()
21 21
     {
22 22
         return $this->form
23
- //   ->options('type_id', Type::all())
23
+    //   ->options('type_id', Type::all())
24 24
     ->create();
25 25
     }
26 26
 
27 27
     public function edit(Note $note)
28 28
     {
29 29
         return $this->form
30
-  //  ->options('type_id', Type::all())
30
+    //  ->options('type_id', Type::all())
31 31
     ->edit($note);
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
app/Forms/Builders/RepositoryForm.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function edit(Repository $repository)
28 28
     {
29 29
         return $this->form
30
-     //   ->options('type_id', Type::all())
30
+        //   ->options('type_id', Type::all())
31 31
         ->edit($repository);
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
app/Forms/Builders/FamilyForm.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         return $this->form
24 24
         ->options('husband_id', Person::all())
25 25
         ->options('wife_id', Person::all())
26
-   //     ->options('type_id', Type::all())
26
+    //     ->options('type_id', Type::all())
27 27
         ->options('child_id', Person::all())
28 28
         ->create();
29 29
     }
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
         ->options('husband_id', Person::all())
35 35
         ->options('wife_id', Person::all())
36 36
         ->append('family_id', $family->id)
37
-         ->value('child_id', $family->children)
38
-         ->options('child_id', Person::all())
37
+            ->value('child_id', $family->children)
38
+            ->options('child_id', Person::all())
39 39
         ->edit($family);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
app/Forms/Builders/SourceForm.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     public function create()
24 24
     {
25 25
         return $this->form
26
-  //  ->options('type_id', Type::all())
26
+    //  ->options('type_id', Type::all())
27 27
     ->options('author_id', Author::all())
28 28
     ->options('publication_id', Publication::all())
29 29
     ->options('repository_id', Repository::all())
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function edit(Source $source)
34 34
     {
35 35
         return $this->form
36
-  //  ->options('type_id', Type::all())
36
+    //  ->options('type_id', Type::all())
37 37
     ->options('author_id', Author::all())
38 38
     ->options('publication_id', Publication::all())
39 39
     ->options('repository_id', Repository::all())
Please login to merge, or discard this patch.
app/Jobs/ExportGedCom.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 //        Log::info("content from getGedcomPerson function => \n $content");
69 69
         // var_dump(\Storage::disk('public')->path($this->file), "job");
70 70
         $manager->storage()->put($this->file, $content);
71
- //       $filePath = 'public/' . $this->file;
71
+    //       $filePath = 'public/' . $this->file;
72 72
 //        $filePath = $manager->storage()->path($filePath);
73 73
         //	chmod_r('/home/genealogia/domains/api.genealogia.co.uk/genealogy/storage/tenants/');
74 74
         exec('chmod -R 0777 '.storage_path('/tenants/'));
Please login to merge, or discard this patch.
app/Http/Controllers/Stripe/Subscribe.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         if ($request->has('payment_method')) {
29 29
             $paymentMethod = $request->payment_method;
30 30
             $subscription = $user->newSubscription('default', $plan_id)
31
-                                 ->trialDays(14);
31
+                                    ->trialDays(14);
32 32
             if ($couponId = $request->input('coupon_id')) {
33 33
                 $subscription->withCoupon($couponId);
34 34
             }
Please login to merge, or discard this patch.