Passed
Push — master ( 5d9325...8a350f )
by Curtis
11:22
created
src/Commands/GedcomExporter.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public function handle()
44 44
     {
45 45
 
46
-         $dir = 'public/gedcom/exported';
46
+            $dir = 'public/gedcom/exported';
47 47
 
48 48
         $filename = $this->argument('filename').".GED";
49 49
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
         $filename = $this->argument('filename').".GED";
49 49
 
50
-        $file_path = $dir . '/' . $filename;
50
+        $file_path = $dir.'/'.$filename;
51 51
 
52 52
         if (!file_exists($dir)) {
53 53
             Storage::makeDirectory($dir);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $people = Person::all();
70 70
         $submissions = $query->get();
71 71
 
72
-        $data =array (
72
+        $data = array(
73 73
             'submissions' => $submissions,
74 74
             'people' => $people,
75 75
         );
Please login to merge, or discard this patch.