We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ExpressionConverter implements ConverterInterface |
||
11 | { |
||
12 | private ExpressionLanguage $expressionLanguage; |
||
13 | |||
14 | public function __construct(ExpressionLanguage $expressionLanguage) |
||
15 | { |
||
16 | $this->expressionLanguage = $expressionLanguage; |
||
17 | } |
||
18 | |||
19 | public function convert($value) |
||
24 | ); |
||
25 | } |
||
26 | |||
27 | public function check($maybeExpression): bool |
||
36 |