mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
17 lines
260 B
PHP
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;
|
||
|
}
|
||
|
}
|