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