mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
21 lines
309 B
PHP
21 lines
309 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GraphQL\Tests\Executor\TestClasses;
|
|
|
|
class Dog
|
|
{
|
|
/** @var string */
|
|
public $name;
|
|
|
|
/** @var bool */
|
|
public $woofs;
|
|
|
|
public function __construct(string $name, bool $woofs)
|
|
{
|
|
$this->name = $name;
|
|
$this->woofs = $woofs;
|
|
}
|
|
}
|