Passed
Push — master ( 5189e1...6f3564 )
by Curtis
13:38 queued 10:53
created
src/Utils/exporter/Subn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $_group = 'subn';
33 33
         $_gid = $record->id;
34 34
 
35
-        $note = $subn->getNote();  // array ---
35
+        $note = $subn->getNote(); // array ---
36 36
 
37 37
         if ($note != null && count($note) > 0) {
38 38
             foreach ($note as $item) {
Please login to merge, or discard this patch.
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.