mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 18:54:39 +01:00
38 lines
823 B
PHP
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);
|
|
}
|
|
}
|