1 | <?php |
||
18 | class GraphQLUpload extends ScalarPluginBase implements ContainerFactoryPluginInterface { |
||
|
|||
19 | use DependencySerializationTrait; |
||
20 | |||
21 | /** |
||
22 | * The request stack. |
||
23 | * |
||
24 | * @var \Symfony\Component\HttpFoundation\RequestStack |
||
25 | */ |
||
26 | protected $requestStack; |
||
27 | |||
28 | /** |
||
29 | * GraphQLUpload constructor. |
||
30 | * |
||
31 | * @param array $configuration |
||
32 | * The plugin configuration array. |
||
33 | * @param string $pluginId |
||
34 | * The plugin id. |
||
35 | * @param array $pluginDefinition |
||
36 | * The plugin definition array. |
||
37 | * @param \Symfony\Component\HttpFoundation\RequestStack $requestStack |
||
38 | * The request stack. |
||
39 | */ |
||
40 | public function __construct(array $configuration, $pluginId, $pluginDefinition, RequestStack $requestStack) { |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public static function create(ContainerInterface $container, array $configuration, $pluginId, $pluginDefinition) { |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function getDefinition(PluggableSchemaBuilderInterface $schemaBuilder) { |
||
67 | } |
||
68 |