Skip to content

Commit 46bd58d

Browse files
Merge remote-tracking branch 'origin/master' into master
# Conflicts: # library/PhpGedcom/Record/ObjeRef/File.php
2 parents 7129fb2 + e1d8bd9 commit 46bd58d

File tree

257 files changed

+4421
-5423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

257 files changed

+4421
-5423
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
open_collective: genealogy

library/PhpGedcom/Gedcom.php

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
<?php
22
/**
3-
* php-gedcom
3+
* php-gedcom.
44
*
55
* php-gedcom is a library for parsing, manipulating, importing and exporting
66
* GEDCOM 5.5 files in PHP 5.3+.
77
*
88
* @author Kristopher Wilson <[email protected]>
99
* @copyright Copyright (c) 2010-2013, Kristopher Wilson
10-
* @package php-gedcom
1110
* @license MIT
11+
*
1212
* @link http://github.com/mrkrstphr/php-gedcom
1313
*/
1414

1515
namespace PhpGedcom;
1616

1717
/**
18-
* Class Gedcom
19-
* @package PhpGedcom
18+
* Class Gedcom.
2019
*/
2120
class Gedcom
2221
{
@@ -39,56 +38,56 @@ class Gedcom
3938
*
4039
* @var \PhpGedcom\Record\Sour[]
4140
*/
42-
protected $sour = array();
41+
protected $sour = [];
4342

4443
/**
4544
* Stores all the individuals contained within the GEDCOM file.
4645
*
4746
* @var \PhpGedcom\Record\Indi[]
4847
*/
49-
protected $indi = array();
48+
protected $indi = [];
5049

5150
/**
5251
* Stores all the individuals contained within the GEDCOM file.
5352
*
5453
* @var array
5554
*/
56-
protected $uid2indi = array();
55+
protected $uid2indi = [];
5756

5857
/**
5958
* Stores all the families contained within the GEDCOM file.
6059
*
6160
* @var \PhpGedcom\Record\Fam[]
6261
*/
63-
protected $fam = array();
62+
protected $fam = [];
6463

6564
/**
6665
* Stores all the notes contained within the GEDCOM file that are not inline.
6766
*
6867
* @var \PhpGedcom\Record\Note[]
6968
*/
70-
protected $note = array();
69+
protected $note = [];
7170

7271
/**
7372
* Stores all repositories that are contained within the GEDCOM file and referenced by sources.
7473
*
7574
* @var \PhpGedcom\Record\Repo[]
7675
*/
77-
protected $repo = array();
76+
protected $repo = [];
7877

7978
/**
8079
* Stores all the media objects that are contained within the GEDCOM file.
8180
*
8281
* @var \PhpGedcom\Record\Obje[]
8382
*/
84-
protected $obje = array();
83+
protected $obje = [];
8584

8685
/**
8786
* Stores information about all the submitters to the GEDCOM file.
8887
*
8988
* @var \PhpGedcom\Record\Subm[]
9089
*/
91-
protected $subm = array();
90+
protected $subm = [];
9291

9392
/**
9493
* Retrieves the header record of the GEDCOM file.

0 commit comments

Comments
 (0)