1 | <?php |
||
10 | class InvalidArrayCountException extends ArgumentException |
||
11 | { |
||
12 | /** |
||
13 | * @param string $variableName |
||
14 | * @param array $variableValue |
||
15 | * @param int $count |
||
16 | * @throws InvalidArrayException |
||
17 | * @throws InvalidIntException |
||
18 | * @throws InvalidNotEmptyException |
||
19 | * @throws InvalidStringException |
||
20 | * @throws NumberNotGreaterException |
||
21 | */ |
||
22 | 5 | public function __construct($variableName, $variableValue, $count) |
|
43 | } |
||
44 |