<?php
declare(strict_types=1);
namespace phpDocumentor\Reflection\PseudoTypes;
use phpDocumentor\Reflection\PseudoType;
use phpDocumentor\Reflection\Type;
use phpDocumentor\Reflection\Types\Integer;
use function implode;
final class IntMask extends Integer implements PseudoType
{
private $types;
public function __construct(Type ...$types)
{
$this->types = $types;
}
public function getTypes(): array
{
return $this->types;
}
public function underlyingType(): Type
{
return new Integer();
}
public function __toString(): string
{
return 'int-mask<' . implode(', ', $this->types) . '>';
}
}