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

43 lines
906 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
final class GetAndSetToMethodCall
{
/**
* @var string
*/
private $classType;
/**
* @var string
*/
private $getMethod;
/**
* @var string
*/
private $setMethod;
/**
* @param class-string $classType
*/
public function __construct(string $classType, string $getMethod, string $setMethod)
{
$this->classType = $classType;
$this->getMethod = $getMethod;
$this->setMethod = $setMethod;
}
public function getGetMethod() : string
{
return $this->getMethod;
}
public function getSetMethod() : string
{
return $this->setMethod;
}
public function getObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->classType);
}
}