rector/rules/Transform/ValueObject/ParentClassToTraits.php
Tomas Votruba bdc1df40d9 Updated Rector to commit 1cc465b4d5
1cc465b4d5 [CodingStyle] Skip RemoveUnusedAliasRector when same class in use statement exists, but not used (#732)
2021-08-22 21:22:18 +00:00

38 lines
824 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
final class ParentClassToTraits
{
/**
* @var string
*/
private $parentType;
/**
* @var string[]
*/
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);
}
}