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\Indi\Name;
class Fone extends \PhpGedcom\Parser\Component
{
public static function parse(\PhpGedcom\Parser $parser)
$record = $parser->getCurrentLineRecord();
$depth = (int) $record[0];
if (isset($record[2])) {
$fone = new \PhpGedcom\Record\Indi\Name\Fone();
$fone->setFone(trim($record[2]));
setFone()
PhpGedcom\Record\Indi\Name\Fone
__call
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$fone->/** @scrutinizer ignore-call */
setFone(trim($record[2]));
} else {
return null;
}
$parser->forward();
while (!$parser->eof()) {
$recordType = strtoupper(trim($record[1]));
$currentDepth = (int) $record[0];
if ($currentDepth <= $depth) {
$parser->back();
break;
if (!isset($record[2])) {
$record[2] = '';
switch ($recordType) {
case 'TYPE':
$fone->setType(trim($record[2]));
setType()
setType(trim($record[2]));
case 'NPFX':
$fone->setNpfx(trim($record[2]));
setNpfx()
setNpfx(trim($record[2]));
case 'GIVN':
$fone->setGivn(trim($record[2]));
setGivn()
setGivn(trim($record[2]));
case 'NICK':
$fone->setNick(trim($record[2]));
setNick()
setNick(trim($record[2]));
case 'SPFX':
$fone->setSpfx(trim($record[2]));
setSpfx()
setSpfx(trim($record[2]));
case 'SURN':
$fone->setSurn(trim($record[2]));
setSurn()
setSurn(trim($record[2]));
case 'NSFX':
$fone->setNsfx(trim($record[2]));
setNsfx()
setNsfx(trim($record[2]));
default:
$parser->logUnhandledRecord(get_class().' @ '.__LINE__);
return $fone;