Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Mappers/Proxys/MutableInterfaceTypeAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
use function sprintf;

/**
* An adapter class (actually a proxy) that adds the "mutable" feature to any Webonyx ObjectType.
* An adapter class (actually a proxy) that adds the "mutable" feature to any Webonyx InterfaceType.
*
* @internal
*/
class MutableInterfaceTypeAdapter extends MutableInterfaceType implements MutableInterface
class MutableInterfaceTypeAdapter extends MutableInterfaceType
{
/** @use MutableAdapterTrait<InterfaceType> */
use MutableAdapterTrait;
Expand Down
2 changes: 1 addition & 1 deletion src/Mappers/Proxys/MutableObjectTypeAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @internal
*/
class MutableObjectTypeAdapter extends MutableObjectType implements MutableInterface
class MutableObjectTypeAdapter extends MutableObjectType
{
/** @use MutableAdapterTrait<ObjectType> */
use MutableAdapterTrait;
Expand Down
21 changes: 21 additions & 0 deletions src/Mappers/Proxys/ResolvableMutableInputObjectTypeAdapter.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php


namespace TheCodingMachine\GraphQLite\Mappers\Proxys;

use GraphQL\Type\Definition\InputType;
use TheCodingMachine\GraphQLite\FieldsBuilder;
use TheCodingMachine\GraphQLite\Types\ResolvableMutableInputObjectType;

/**
* An adapter class (actually a proxy) that adds the "mutable" + "resolvable" feature to any Webonyx InputType.
*
* @internal
*/
class ResolvableMutableInputObjectTypeAdapter extends ResolvableMutableInputObjectType
{
public function __construct(InputType $inputType)
{

}
}