mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
9063100051
f99f19cd43
Add class-string typehint to MethodCallRename (#2726)
62 lines
1.4 KiB
PHP
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;
|
|
}
|
|
}
|