17 lines
225 B
PHP
Raw Permalink Normal View History

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