mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220606\Rector\Transform\ValueObject;
|
|
|
|
use RectorPrefix20220606\PHPStan\Type\ObjectType;
|
|
final class MethodCallToStaticCall
|
|
{
|
|
/**
|
|
* @readonly
|
|
* @var string
|
|
*/
|
|
private $oldClass;
|
|
/**
|
|
* @readonly
|
|
* @var string
|
|
*/
|
|
private $oldMethod;
|
|
/**
|
|
* @readonly
|
|
* @var string
|
|
*/
|
|
private $newClass;
|
|
/**
|
|
* @readonly
|
|
* @var string
|
|
*/
|
|
private $newMethod;
|
|
public function __construct(string $oldClass, string $oldMethod, string $newClass, string $newMethod)
|
|
{
|
|
$this->oldClass = $oldClass;
|
|
$this->oldMethod = $oldMethod;
|
|
$this->newClass = $newClass;
|
|
$this->newMethod = $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;
|
|
}
|
|
}
|