golden hour
/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast
⬆️ Go Up
Upload
File/Folder
Size
Actions
Array_.php
210 B
Del
OK
Bool_.php
348 B
Del
OK
Double.php
401 B
Del
OK
Int_.php
344 B
Del
OK
Object_.php
212 B
Del
OK
String_.php
354 B
Del
OK
Unset_.php
210 B
Del
OK
Void_.php
208 B
Del
OK
Edit: String_.php
<?php declare(strict_types=1); namespace PhpParser\Node\Expr\Cast; use PhpParser\Node\Expr\Cast; class String_ extends Cast { // For use in "kind" attribute public const KIND_STRING = 1; // "string" syntax public const KIND_BINARY = 2; // "binary" syntax public function getType(): string { return 'Expr_Cast_String'; } }
Save