Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wpide
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Node
:
ComplexType.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace PhpParser\Node; use PhpParser\NodeAbstract; /** * This is a base class for complex types, including nullable types and union types. * * It does not provide any shared behavior and exists only for type-checking purposes. */ abstract class ComplexType extends NodeAbstract { }