Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
8 / 8 |
ParameterAssertionException | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
4 | |
100.00% |
8 / 8 |
__construct | |
100.00% |
1 / 1 |
3 | |
100.00% |
7 / 7 |
|||
getParameterName | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
<?php | |
namespace Wikimedia\Assert; | |
use InvalidArgumentException; | |
/** | |
* Exception indicating that an parameter assertion failed. | |
* This generally means a disagreement between the caller and the implementation of a function. | |
* | |
* @since 0.1.0 | |
* | |
* @license MIT | |
* @author Daniel Kinzler | |
* @copyright Wikimedia Deutschland e.V. | |
*/ | |
class ParameterAssertionException extends InvalidArgumentException implements AssertionException { | |
/** | |
* @var string | |
*/ | |
private $parameterName; | |
/** | |
* @param string $parameterName | |
* @param string $description | |
* | |
* @throws ParameterTypeException | |
*/ | |
public function __construct( $parameterName, $description ) { | |
if ( !is_string( $parameterName ) ) { | |
throw new ParameterTypeException( 'parameterName', 'string' ); | |
} | |
if ( !is_string( $description ) ) { | |
throw new ParameterTypeException( 'description', 'string' ); | |
} | |
parent::__construct( "Bad value for parameter $parameterName: $description" ); | |
$this->parameterName = $parameterName; | |
} | |
/** | |
* @return string | |
*/ | |
public function getParameterName(): string { | |
return $this->parameterName; | |
} | |
} |