Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
19 | class ClientResetSubscriber implements EventSubscriberInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var GraphQLClient |
||
23 | */ |
||
24 | protected $client; |
||
25 | |||
26 | public function __construct(GraphQLClient $client) |
||
27 | { |
||
28 | $this->client = $client; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public static function getSubscribedEvents() |
||
38 | ]; |
||
39 | } |
||
40 | |||
41 | public function restartClient() |
||
44 | } |
||
45 | } |