ValueWrapperInterface.php in GraphQL 8.3
Namespace
Drupal\graphql\GraphQLFile
src/GraphQL/ValueWrapperInterface.phpView source
<?php
namespace Drupal\graphql\GraphQL;
interface ValueWrapperInterface {
/**
* Set the wrapped value.
*
* @param mixed $value
*/
public function setValue($value);
/**
* Get the wrapped value.
*
* @return mixed
*/
public function getValue();
}
Interfaces
Name | Description |
---|---|
ValueWrapperInterface |