for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* php-gedcom.
*
* php-gedcom is a library for parsing, manipulating, importing and exporting
* GEDCOM 5.5 files in PHP 5.3+.
* @author Kristopher Wilson <[email protected]>
* @copyright Copyright (c) 2010-2013, Kristopher Wilson
* @license MIT
* @link http://github.com/mrkrstphr/php-gedcom
*/
namespace Gedcom\Parser\Fam;
class Slgs extends \Gedcom\Parser\Component
{
public static function parse(\Gedcom\Parser $parser)
$record = $parser->getCurrentLineRecord();
$depth = (int) $record[0];
$slgs = new \Gedcom\Record\Fam\Slgs();
$parser->forward();
while (!$parser->eof()) {
$recordType = strtoupper(trim($record[1]));
$currentDepth = (int) $record[0];
if ($currentDepth <= $depth) {
$parser->back();
break;
}
switch ($recordType) {
case 'STAT':
$stat = \Gedcom\Parser\Fam\Slgs\Stat::parse($parser);
$slgs->setStat($stat);
setStat()
Gedcom\Record\Fam\Slgs
__call
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$slgs->/** @scrutinizer ignore-call */
setStat($stat);
case 'DATE':
$slgs->setDate(trim($record[2]));
setDate()
setDate(trim($record[2]));
case 'PLAC':
$slgs->setPlac(trim($record[2]));
setPlac()
setPlac(trim($record[2]));
case 'TEMP':
$slgs->setTemp(trim($record[2]));
setTemp()
setTemp(trim($record[2]));
case 'SOUR':
$sour = \Gedcom\Parser\SourRef::parse($parser);
$slgs->addSour($sour);
case 'NOTE':
$note = \Gedcom\Parser\NoteRef::parse($parser);
if ($note) {
$slgs->addNote($note);
default:
$parser->logUnhandledRecord(self::class.' @ '.__LINE__);
return $slgs;