/
home
/
obinna
/
html
/
boazapp
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
ConstExpr
/
Upload File
HOME
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\ConstExpr; use PHPStan\PhpDocParser\Ast\NodeAttributes; class ConstExprTrueNode implements ConstExprNode { use NodeAttributes; public function __toString(): string { return 'true'; } }