rector/rules/Transform/ValueObject/UnsetAndIssetToMethodCall.php
Tomas Votruba c726969380 Updated Rector to commit fc10fce13d
fc10fce13d [Rectify] [Php81] Enable Rectify on Readonly Property only (#1384)
2021-12-04 12:47:17 +00:00

45 lines
1.0 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
use Rector\Core\Validation\RectorAssert;
final class UnsetAndIssetToMethodCall
{
/**
* @readonly
* @var string
*/
private $type;
/**
* @readonly
* @var string
*/
private $issetMethodCall;
/**
* @readonly
* @var string
*/
private $unsedMethodCall;
public function __construct(string $type, string $issetMethodCall, string $unsedMethodCall)
{
$this->type = $type;
$this->issetMethodCall = $issetMethodCall;
$this->unsedMethodCall = $unsedMethodCall;
\Rector\Core\Validation\RectorAssert::className($type);
}
public function getObjectType() : \PHPStan\Type\ObjectType
{
return new \PHPStan\Type\ObjectType($this->type);
}
public function getIssetMethodCall() : string
{
return $this->issetMethodCall;
}
public function getUnsedMethodCall() : string
{
return $this->unsedMethodCall;
}
}