graphql-php/tests/Executor/TestClasses/Human.php
2018-09-01 20:05:38 +02:00

17 lines
225 B
PHP

<?php
declare(strict_types=1);
namespace GraphQL\Tests\Executor\TestClasses;
class Human
{
/** @var string */
public $name;
public function __construct(string $name)
{
$this->name = $name;
}
}