Page MenuHomeWickedGov Phorge

ConstExprFloatNode.php
No OneTemporary

Size
373 B
Referenced Files
None
Subscribers
None

ConstExprFloatNode.php

<?php declare(strict_types = 1);
namespace PHPStan\PhpDocParser\Ast\ConstExpr;
use PHPStan\PhpDocParser\Ast\NodeAttributes;
class ConstExprFloatNode implements ConstExprNode
{
use NodeAttributes;
public string $value;
public function __construct(string $value)
{
$this->value = $value;
}
public function __toString(): string
{
return $this->value;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 20:12 (1 d, 10 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
db/89/f8d6b38f0ca01e6e21c84783bc4d
Default Alt Text
ConstExprFloatNode.php (373 B)

Event Timeline