1 | <?php |
||
16 | class GraphQLManager |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var TypesManager $types_manager |
||
21 | */ |
||
22 | protected $types_manager; |
||
23 | |||
24 | /** |
||
25 | * @var ConnectionsManager $connections_manager |
||
26 | */ |
||
27 | protected $connections_manager; |
||
28 | |||
29 | |||
30 | /** |
||
31 | * GraphQLManager constructor. |
||
32 | * |
||
33 | * @param TypesManager $types_manager |
||
34 | * @param ConnectionsManager $connections_manager |
||
35 | */ |
||
36 | public function __construct(TypesManager $types_manager, ConnectionsManager $connections_manager) |
||
41 | |||
42 | |||
43 | /** |
||
44 | * @throws CollectionDetailsException |
||
45 | * @throws CollectionLoaderException |
||
46 | * @since $VID:$ |
||
47 | */ |
||
48 | public function init() |
||
53 | |||
54 | } |