1 | <?php |
||||||
2 | /** |
||||||
3 | * php-gedcom. |
||||||
4 | * |
||||||
5 | * php-gedcom is a library for parsing, manipulating, importing and exporting |
||||||
6 | * GEDCOM 5.5 files in PHP 5.3+. |
||||||
7 | * |
||||||
8 | * @author Kristopher Wilson <[email protected]> |
||||||
9 | * @copyright Copyright (c) 2010-2013, Kristopher Wilson |
||||||
10 | * @license MIT |
||||||
11 | * |
||||||
12 | * @link http://github.com/mrkrstphr/php-gedcom |
||||||
13 | */ |
||||||
14 | |||||||
15 | namespace Gedcom\Parser\Indi; |
||||||
16 | |||||||
17 | class Asso extends \Gedcom\Parser\Component |
||||||
18 | { |
||||||
19 | public static function parse(\Gedcom\Parser $parser) |
||||||
20 | { |
||||||
21 | $record = $parser->getCurrentLineRecord(); |
||||||
22 | $depth = (int) $record[0]; |
||||||
23 | if (isset($record[2])) { |
||||||
24 | $asso = new \Gedcom\Record\Indi\Asso(); |
||||||
25 | $asso->setIndi($parser->normalizeIdentifier($record[2])); |
||||||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||||||
26 | } else { |
||||||
27 | $parser->skipToNextLevel($depth); |
||||||
28 | |||||||
29 | return null; |
||||||
30 | } |
||||||
31 | |||||||
32 | $parser->forward(); |
||||||
33 | |||||||
34 | while (!$parser->eof()) { |
||||||
35 | $record = $parser->getCurrentLineRecord(); |
||||||
36 | $recordType = strtoupper(trim($record[1])); |
||||||
37 | $currentDepth = (int) $record[0]; |
||||||
38 | |||||||
39 | if ($currentDepth <= $depth) { |
||||||
40 | $parser->back(); |
||||||
41 | break; |
||||||
42 | } |
||||||
43 | |||||||
44 | switch ($recordType) { |
||||||
45 | case 'RELA': |
||||||
46 | $asso->setRela(trim($record[2])); |
||||||
0 ignored issues
–
show
The method
setRela() does not exist on Gedcom\Record\Indi\Asso . Since you implemented __call , consider adding a @method annotation.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||||
47 | break; |
||||||
48 | case 'SOUR': |
||||||
49 | $sour = \Gedcom\Parser\SourRef::parse($parser); |
||||||
50 | $asso->addSour($sour); |
||||||
51 | break; |
||||||
52 | case 'NOTE': |
||||||
53 | $note = \Gedcom\Parser\NoteRef::parse($parser); |
||||||
54 | if ($note) { |
||||||
55 | $asso->addNote($note); |
||||||
56 | } |
||||||
57 | break; |
||||||
58 | default: |
||||||
59 | $parser->logUnhandledRecord(self::class.' @ '.__LINE__); |
||||||
60 | } |
||||||
61 | |||||||
62 | $parser->forward(); |
||||||
63 | } |
||||||
64 | |||||||
65 | return $asso; |
||||||
66 | } |
||||||
67 | } |
||||||
68 |