JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Int_.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php
File size: 344 bytes
MIME-type: text/x-php
Charset: utf-8
<?php declare(strict_types=1);
namespace PhpParser\Node\Expr\Cast;
use PhpParser\Node\Expr\Cast;
class Int_ extends Cast {
// For use in "kind" attribute
public const KIND_INT = 1; // "int" syntax
public const KIND_INTEGER = 2; // "integer" syntax
public function getType(): string {
return 'Expr_Cast_Int';
}
}