| 1: | <?php declare(strict_types=1); |
| 2: | |
| 3: | namespace PhpParser\Node; |
| 4: | |
| 5: | use PhpParser\NodeAbstract; |
| 6: | |
| 7: | /** |
| 8: | * This is a base class for complex types, including nullable types and union types. |
| 9: | * |
| 10: | * It does not provide any shared behavior and exists only for type-checking purposes. |
| 11: | */ |
| 12: | abstract class ComplexType extends NodeAbstract |
| 13: | { |
| 14: | } |
| 15: |