1 | <?php |
||
24 | class EntityToJson extends FieldPluginBase implements ContainerFactoryPluginInterface { |
||
25 | use DependencySerializationTrait; |
||
26 | |||
27 | /** |
||
28 | * The serializer. |
||
29 | * |
||
30 | * @var \Symfony\Component\Serializer\SerializerInterface |
||
31 | */ |
||
32 | protected $serializer; |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public static function create( |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function __construct( |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | protected function resolveValues($value, array $args, ResolveContext $context, ResolveInfo $info) { |
||
70 | |||
71 | } |
||
72 |