Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
24 | class StorageValuesProvider implements ExpressionPreprocessorInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var Storage |
||
28 | */ |
||
29 | protected $storage; |
||
30 | |||
31 | /** |
||
32 | * StorageValuesProvider constructor. |
||
33 | * |
||
34 | * @param Storage $storage |
||
35 | */ |
||
36 | 1 | public function __construct(Storage $storage) |
|
39 | 1 | } |
|
40 | |||
41 | 1 | public function setUp(ExpressionLanguage $el, string &$expression, array &$values) |
|
48 |