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 PhpGedcom\Parser;
class Plac extends \PhpGedcom\Parser\Component
{
public static function parse(\PhpGedcom\Parser $parser)
$record = $parser->getCurrentLineRecord();
$depth = (int) $record[0];
if (isset($record[2])) {
$_plac = trim($record[2]);
} else {
$parser->skipToNextLevel($depth);
return null;
}
$plac = new \PhpGedcom\Record\Plac();
$plac->setPlac($_plac);
setPlac()
PhpGedcom\Record\Plac
__call
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$plac->/** @scrutinizer ignore-call */
setPlac($_plac);
$parser->forward();
while (!$parser->eof()) {
$currentDepth = (int) $record[0];
$recordType = strtoupper(trim($record[1]));
if ($currentDepth <= $depth) {
$parser->back();
break;
switch ($recordType) {
case 'FORM':
$plac->setForm(trim($record[2]));
setForm()
setForm(trim($record[2]));
case 'FONE':
$fone = \PhpGedcom\Parser\Plac\Fone::parse($parser);
$plac->setFone($fone);
setFone()
setFone($fone);
case 'ROMN':
$romn = \PhpGedcom\Parser\Plac\Romn::parse($parser);
$plac->setRomn($romn);
setRomn()
setRomn($romn);
case 'NOTE':
if ($note = \PhpGedcom\Parser\NoteRef::parse($parser)) {
$plac->addNote($note);
case 'MAP':
$map = \PhpGedcom\Parser\Plac\Map::parse($parser);
$plac->setMap($map);
setMap()
setMap($map);
default:
$parser->logUnhandledRecord(get_class().' @ '.__LINE__);
return $plac;