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;
abstract class Component
{
public static function parse(\Gedcom\Parser $parser)
$parser
If this is a false-positive, you can also ignore this issue in your code via the ignore-unused annotation
ignore-unused
public static function parse(/** @scrutinizer ignore-unused */ \Gedcom\Parser $parser)
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
}
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.