interface ValueWrapperInterface in GraphQL 8.3
Hierarchy
- interface \Drupal\graphql\GraphQL\ValueWrapperInterface
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\GraphQLView source
interface ValueWrapperInterface {
/**
* Set the wrapped value.
*
* @param mixed $value
*/
public function setValue($value);
/**
* Get the wrapped value.
*
* @return mixed
*/
public function getValue();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ValueWrapperInterface:: |
public | function | Get the wrapped value. | 1 |
ValueWrapperInterface:: |
public | function | Set the wrapped value. | 1 |