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 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class EvaluatorIsNotAllowedException extends \Exception |
||
10 | { |
||
11 | public function __construct(string $expressionFunctionName, int $code = 0, Throwable $previous = null) |
||
12 | { |
||
13 | parent::__construct( |
||
14 | "The expression function '$expressionFunctionName' cannot be used by it's evaluator.", |
||
15 | $code, |
||
16 | $previous |
||
17 | ); |
||
18 | } |
||
19 | |||
20 | public function __invoke(): void |
||
23 | } |
||
24 | } |
||
25 |