We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class EvaluatorIsNotAllowedException extends \Exception |
||
10 | { |
||
11 | 143 | public function __construct(string $expressionFunctionName, int $code = 0, Throwable $previous = null) |
|
12 | { |
||
13 | 143 | parent::__construct( |
|
14 | 143 | "The expression function '$expressionFunctionName' cannot be used by it's evaluator.", |
|
15 | 143 | $code, |
|
16 | 143 | $previous |
|
17 | ); |
||
18 | 143 | } |
|
19 | |||
20 | 7 | public function __invoke(): void |
|
23 | } |
||
24 | } |
||
25 |