Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | * |
||
32 | * @return bool |
||
33 | */ |
||
34 | protected static function evaluateCondition($arguments = null, RenderingContextInterface $renderingContext) : bool |
||
35 | { |
||
36 | try { |
||
37 | $arguments['asset']->getResource(); |
||
38 | } catch (EntityNotFoundException $exception) { |
||
39 | return false; |
||
40 | } |
||
41 | |||
42 | return true; |
||
45 |