1
0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-13 16:26:06 +03:00

20 lines
271 B
PHP
Raw Normal View History

2018-09-01 17:07:06 +02:00
<?php
declare(strict_types=1);
namespace GraphQL\Tests\Executor\TestClasses;
class NotSpecial
{
/** @var string */
public $value;
/**
* @param string $value
*/
public function __construct($value)
{
$this->value = $value;
}
}