1
0
mirror of https://github.com/retailcrm/graphql-php.git synced 2025-03-21 07:23:48 +03:00
2018-09-01 20:05:38 +02:00

17 lines
260 B
PHP

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