Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class ReadOnlyException extends RuntimeException |
||
12 | { |
||
13 | /** |
||
14 | * Exception thrown when attempting to modify a Config value. |
||
15 | * |
||
16 | * @param string|int $property The key of the value for which an attempt was made to modify the value. |
||
17 | * @param int $code The Exception code. |
||
18 | * @param \Throwable $previous The previous throwable used for the exception chaining. |
||
19 | */ |
||
20 | public function __construct($property, int $code = 0, Throwable $previous = null) |
||
27 |