rector/rules/Transform/ValueObject/MethodCallToStaticCall.php
Tomas Votruba 9063100051 Updated Rector to commit f99f19cd4328009bad8aaeab7d80f7d920628bca
f99f19cd43 Add class-string typehint to MethodCallRename (#2726)
2022-08-03 12:38:40 +00:00

62 lines
1.4 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Transform\ValueObject;
use PHPStan\Type\ObjectType;
use Rector\Core\Validation\RectorAssert;
final class MethodCallToStaticCall
{
/**
* @var class-string
* @readonly
*/
private $oldClass;
/**
* @readonly
* @var string
*/
private $oldMethod;
/**
* @var class-string
* @readonly
*/
private $newClass;
/**
* @readonly
* @var string
*/
private $newMethod;
/**
* @param class-string $oldClass
* @param class-string $newClass
*/
public function __construct(string $oldClass, string $oldMethod, string $newClass, string $newMethod)
{
$this->oldClass = $oldClass;
$this->oldMethod = $oldMethod;
$this->newClass = $newClass;
$this->newMethod = $newMethod;
RectorAssert::className($oldClass);
RectorAssert::className($oldMethod);
RectorAssert::className($newClass);
RectorAssert::className($newMethod);
}
public function getOldObjectType() : ObjectType
{
return new ObjectType($this->oldClass);
}
public function getOldMethod() : string
{
return $this->oldMethod;
}
public function getNewClass() : string
{
return $this->newClass;
}
public function getNewMethod() : string
{
return $this->newMethod;
}
}