Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
6 / 6 |
ParameterElementTypeException | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
3 | |
100.00% |
6 / 6 |
__construct | |
100.00% |
1 / 1 |
2 | |
100.00% |
5 / 5 |
|||
getElementType | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
<?php | |
namespace Wikimedia\Assert; | |
/** | |
* Exception indicating that a parameter element type 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 ParameterElementTypeException extends ParameterAssertionException { | |
/** | |
* @var string | |
*/ | |
private $elementType; | |
/** | |
* @param string $parameterName | |
* @param string $elementType | |
* | |
* @throws ParameterTypeException | |
*/ | |
public function __construct( $parameterName, $elementType ) { | |
if ( !is_string( $elementType ) ) { | |
throw new ParameterTypeException( 'elementType', 'string' ); | |
} | |
parent::__construct( $parameterName, "all elements must be $elementType" ); | |
$this->elementType = $elementType; | |
} | |
/** | |
* @return string | |
*/ | |
public function getElementType(): string { | |
return $this->elementType; | |
} | |
} |