@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return SharedNote|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?SharedNote; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?SharedNote; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a note from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return SharedNote |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): SharedNote; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : SharedNote; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return GedcomRecord|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?GedcomRecord; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?GedcomRecord; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a GedcomRecord object from raw GEDCOM data. |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * |
| 51 | 51 | * @return GedcomRecord |
| 52 | 52 | */ |
| 53 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): GedcomRecord; |
|
| 53 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : GedcomRecord; |
|
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * Create a GedcomRecord object from a row in the database. |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Repository|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Repository; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Repository; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a source from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Repository |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Repository; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Repository; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Family|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Family; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Family; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a Family object from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Family |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Family; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Family; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Header|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Header; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Header; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a header from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Header |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Header; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Header; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Individual|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Individual; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Individual; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create an individual from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Individual |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Individual; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Individual; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Submitter|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Submitter; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Submitter; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a submitter from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Submitter |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Submitter; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Submitter; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Note|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Note; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Note; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a note from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Note |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Note; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Note; |
|
| 63 | 63 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return Source|null |
| 39 | 39 | */ |
| 40 | - public function make(string $xref, Tree $tree, string|null $gedcom = null): ?Source; |
|
| 40 | + public function make(string $xref, Tree $tree, string | null $gedcom = null): ?Source; |
|
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * Create a source from a row in the database. |
@@ -59,5 +59,5 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return Source |
| 61 | 61 | */ |
| 62 | - public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Source; |
|
| 62 | + public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Source; |
|
| 63 | 63 | } |