Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php declare(strict_types=1);namespace PhpParser\Node\Expr\Cast;use PhpParser\Node\Expr\Cast;class Double extends Cast{// For use in "kind" attributeconst KIND_DOUBLE = 1; // "double" syntaxconst KIND_FLOAT = 2; // "float" syntaxconst KIND_REAL = 3; // "real" syntaxpublic function getType() : string {return 'Expr_Cast_Double';}}