D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
ConstExpr
/
Filename :
ConstExprIntegerNode.php
back
Copy
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\ConstExpr; use PHPStan\PhpDocParser\Ast\NodeAttributes; class ConstExprIntegerNode implements ConstExprNode { use NodeAttributes; public string $value; public function __construct(string $value) { $this->value = $value; } public function __toString(): string { return $this->value; } }