You are here

interface ValueWrapperInterface in GraphQL 8.3

Hierarchy

Expanded class hierarchy of ValueWrapperInterface

All classes that implement ValueWrapperInterface

2 files declare their use of ValueWrapperInterface
CacheableValue.php in src/GraphQL/Cache/CacheableValue.php
FieldPluginBase.php in src/Plugin/GraphQL/Fields/FieldPluginBase.php

File

src/GraphQL/ValueWrapperInterface.php, line 5

Namespace

Drupal\graphql\GraphQL
View source
interface ValueWrapperInterface {

  /**
   * Set the wrapped value.
   *
   * @param mixed $value
   */
  public function setValue($value);

  /**
   * Get the wrapped value.
   *
   * @return mixed
   */
  public function getValue();

}

Members

Namesort descending Modifiers Type Description Overrides
ValueWrapperInterface::getValue public function Get the wrapped value. 1
ValueWrapperInterface::setValue public function Set the wrapped value. 1