Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/rector/rector/vendor/nikic/php-parser/lib/PhpParser/Node/
Upload File :
Current File : //home/rtorresani/www/vendor/rector/rector/vendor/nikic/php-parser/lib/PhpParser/Node/UnionType.php

<?php

declare (strict_types=1);
namespace PhpParser\Node;

class UnionType extends \PhpParser\Node\ComplexType
{
    /** @var (Identifier|Name|IntersectionType)[] Types */
    public $types;
    /**
     * Constructs a union type.
     *
     * @param (Identifier|Name|IntersectionType)[] $types      Types
     * @param array               $attributes Additional attributes
     */
    public function __construct(array $types, array $attributes = [])
    {
        $this->attributes = $attributes;
        $this->types = $types;
    }
    public function getSubNodeNames() : array
    {
        return ['types'];
    }
    public function getType() : string
    {
        return 'UnionType';
    }
}