for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Saxulum\ElasticSearchQueryBuilder\Node;
final class FloatNode extends AbstractNode
{
/**
* @var float|null
*/
private $value;
* @param float|null $value
public function __construct(float $value = null)
$this->value = $value;
}
public function getDefault()
return;
* @return float|null
public function serialize()
return $this->value;