@@ -93,31 +93,31 @@ class Gedcom
9393 /**
9494 * Retrieves the header record of the GEDCOM file.
9595 */
96- public function setHead (\Gedcom \Record \Head $ head )
96+ public function setHead (\Gedcom \Record \Head $ head )
9797 {
9898 $ this ->head = $ head ;
9999 }
100100
101101 /**
102102 * Retrieves the submission record of the GEDCOM file.
103103 */
104- public function setSubn (\Gedcom \Record \Subn $ subn )
104+ public function setSubn (\Gedcom \Record \Subn $ subn )
105105 {
106106 $ this ->subn = $ subn ;
107107 }
108108
109109 /**
110110 * Adds a source to the collection of sources.
111111 */
112- public function addSour (\Gedcom \Record \Sour $ sour )
112+ public function addSour (\Gedcom \Record \Sour $ sour )
113113 {
114114 $ this ->sour [$ sour ->getSour ()] = $ sour ;
115115 }
116116
117117 /**
118118 * Adds an individual to the collection of individuals.
119119 */
120- public function addIndi (\Gedcom \Record \Indi $ indi )
120+ public function addIndi (\Gedcom \Record \Indi $ indi )
121121 {
122122 $ this ->indi [$ indi ->getId ()] = $ indi ;
123123 if ($ indi ->getUid ()) {
@@ -128,39 +128,39 @@ public function addIndi (\Gedcom\Record\Indi $indi)
128128 /**
129129 * Adds a family to the collection of families.
130130 */
131- public function addFam (\Gedcom \Record \Fam $ fam )
131+ public function addFam (\Gedcom \Record \Fam $ fam )
132132 {
133133 $ this ->fam [$ fam ->getId ()] = $ fam ;
134134 }
135135
136136 /**
137137 * Adds a note to the collection of notes.
138138 */
139- public function addNote (\Gedcom \Record \Note $ note )
139+ public function addNote (\Gedcom \Record \Note $ note )
140140 {
141141 $ this ->note [$ note ->getId ()] = $ note ;
142142 }
143143
144144 /**
145145 * Adds a repository to the collection of repositories.
146146 */
147- public function addRepo (\Gedcom \Record \Repo $ repo )
147+ public function addRepo (\Gedcom \Record \Repo $ repo )
148148 {
149149 $ this ->repo [$ repo ->getRepo ()] = $ repo ;
150150 }
151151
152152 /**
153153 * Adds an object to the collection of objects.
154154 */
155- public function addObje (\Gedcom \Record \Obje $ obje )
155+ public function addObje (\Gedcom \Record \Obje $ obje )
156156 {
157157 $ this ->obje [$ obje ->getId ()] = $ obje ;
158158 }
159159
160160 /**
161161 * Adds a submitter record to the collection of submitters.
162162 */
163- public function addSubm (\Gedcom \Record \Subm $ subm )
163+ public function addSubm (\Gedcom \Record \Subm $ subm )
164164 {
165165 $ this ->subm [$ subm ->getSubm ()] = $ subm ;
166166 }
0 commit comments