mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-14 18:18:26 -05:00
9 lines
133 B
PHP
9 lines
133 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
abstract class Expr extends NodeAbstract {
|
|
}
|