for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace libphonenumber\Leniency;
use libphonenumber\PhoneNumber;
use libphonenumber\PhoneNumberUtil;
abstract class AbstractLeniency
{
/**
* Integer level to compare 'ENUMs'
* @var int
*/
protected static $level;
* Returns true if $number is a verified number according to this leniency
*
* @param PhoneNumber $number
* @param string $candidate
* @param PhoneNumberUtil $util
* @return bool
* @codeCoverageIgnore
public static function verify(PhoneNumber $number, $candidate, PhoneNumberUtil $util)
$number
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 verify(/** @scrutinizer ignore-unused */ PhoneNumber $number, $candidate, PhoneNumberUtil $util)
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.
$candidate
public static function verify(PhoneNumber $number, /** @scrutinizer ignore-unused */ $candidate, PhoneNumberUtil $util)
$util
public static function verify(PhoneNumber $number, $candidate, /** @scrutinizer ignore-unused */ PhoneNumberUtil $util)
// This can not be called directly
throw new \BadMethodCallException;
}
* Compare against another Leniency
* @param AbstractLeniency $leniency
* @return int
public static function compareTo(AbstractLeniency $leniency)
return static::getLevel() - $leniency::getLevel();
protected static function getLevel()
if (static::$level === null) {
static::level === null
false
throw new \RuntimeException('$level should be defined');
return static::$level;
public function __toString()
return str_replace('libphonenumber\\Leniency\\', '', get_class($this));
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.