mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
9a4a5b2bc5
eb5df4dde7
Use vendor-patches main branch (#6453)
54 lines
1.2 KiB
PHP
54 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Transform\ValueObject;
|
|
|
|
use PHPStan\Type\ObjectType;
|
|
use Rector\Validation\RectorAssert;
|
|
final class MethodCallToStaticCall
|
|
{
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private string $oldClass;
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private string $oldMethod;
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private string $newClass;
|
|
/**
|
|
* @readonly
|
|
*/
|
|
private string $newMethod;
|
|
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;
|
|
}
|
|
}
|