rector/rules/Transform/ValueObject/ParentClassToTraits.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

38 lines
823 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
final class ParentClassToTraits
{
/**
* @var string
*/
private $parentType;
/**
* @var mixed[]
*/
private $traitNames;
/**
* @param string[] $traitNames
*/
public function __construct(string $parentType, array $traitNames)
{
$this->parentType = $parentType;
$this->traitNames = $traitNames;
}
public function getParentObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->parentType);
}
/**
* @return string[]
*/
public function getTraitNames() : array
{
// keep the Trait order the way it is in config
return \array_reverse($this->traitNames);
}
}