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 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ExpressionConverter implements ConverterInterface |
||
| 11 | { |
||
| 12 | private ExpressionLanguage $expressionLanguage; |
||
| 13 | |||
| 14 | 143 | public function __construct(ExpressionLanguage $expressionLanguage) |
|
| 15 | { |
||
| 16 | 143 | $this->expressionLanguage = $expressionLanguage; |
|
| 17 | 143 | } |
|
| 18 | |||
| 19 | 26 | public function convert($value) |
|
| 24 | ); |
||
| 25 | } |
||
| 26 | |||
| 27 | 37 | public function check($maybeExpression): bool |
|
| 36 |