Array_.php 210 B

1234567891011
  1. <?php declare(strict_types=1);
  2. namespace PhpParser\Node\Expr\Cast;
  3. use PhpParser\Node\Expr\Cast;
  4. class Array_ extends Cast {
  5. public function getType(): string {
  6. return 'Expr_Cast_Array';
  7. }
  8. }