Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function __construct( |
||
29 | $pluginSubdirectory, |
||
30 | \Traversable $namespaces, |
||
31 | ModuleHandlerInterface $moduleHandler, |
||
32 | CacheBackendInterface $cacheBackend, |
||
33 | $pluginInterface, |
||
34 | $pluginAnnotationName |
||
35 | ) { |
||
36 | parent::__construct( |
||
37 | $pluginSubdirectory, |
||
38 | $namespaces, |
||
39 | $moduleHandler, |
||
40 | $pluginInterface, |
||
41 | $pluginAnnotationName |
||
42 | ); |
||
43 | |||
44 | $this->alterInfo('graphql_schema'); |
||
45 | $this->useCaches(TRUE); |
||
46 | $this->setCacheBackend($cacheBackend, 'schemas', ['graphql', 'graphql:schemas']); |
||
47 | } |
||
48 | |||
50 |