27 lines
388 B
PHP
27 lines
388 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace PHPStan\PhpDocParser\Ast\ConstExpr;
|
|
|
|
use PHPStan\PhpDocParser\Ast\NodeAttributes;
|
|
|
|
class ConstExprIntegerNode implements ConstExprNode
|
|
{
|
|
|
|
use NodeAttributes;
|
|
|
|
/** @var string */
|
|
public $value;
|
|
|
|
public function __construct(string $value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
}
|