Passed
Pull Request — master (#69)
by Curtis
10:55
created
src/Commands/GedcomExporter.php 1 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.