mirror of
https://github.com/10h30/laravel-file-upload-series.git
synced 2026-07-18 22:23:17 +09:00
11 lines
159 B
PHP
11 lines
159 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace PHPStan\PhpDocParser\Ast\ConstExpr;
|
|
|
|
use PHPStan\PhpDocParser\Ast\Node;
|
|
|
|
interface ConstExprNode extends Node
|
|
{
|
|
|
|
}
|