| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class ClientVariablesValueProvider implements ExpressionPreprocessorInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var GraphQLClient |
||
| 27 | */ |
||
| 28 | protected $client; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * ResponseValueProvider constructor. |
||
| 32 | * |
||
| 33 | * @param GraphQLClient $client |
||
| 34 | */ |
||
| 35 | public function __construct(GraphQLClient $client) |
||
| 36 | { |
||
| 37 | $this->client = $client; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function setUp(ExpressionLanguage $el, string &$expression, array &$values) |
||
| 45 | } |
||
| 46 | } |
||
| 47 | } |