You are here

ValueWrapperInterface.php in GraphQL 8.3

File

src/GraphQL/ValueWrapperInterface.php
View 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