rector/packages/PostRector/ValueObject/PropertyMetadata.php
Tomas Votruba cdc3b7adef Updated Rector to commit f451b0b8e1e6761ec7f50809745d44d01caba66d
f451b0b8e1 [PHP 8.0] Bump to promoted properties (#4)
2021-05-10 23:39:21 +00:00

40 lines
743 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PostRector\ValueObject;
use PHPStan\Type\Type;
final class PropertyMetadata
{
/**
* @var string
*/
private $name;
/**
* @var \PHPStan\Type\Type|null
*/
private $type;
/**
* @var int
*/
private $flags;
public function __construct(string $name, ?\PHPStan\Type\Type $type, int $flags)
{
$this->name = $name;
$this->type = $type;
$this->flags = $flags;
}
public function getName() : string
{
return $this->name;
}
public function getType() : ?\PHPStan\Type\Type
{
return $this->type;
}
public function getFlags() : int
{
return $this->flags;
}
}