| Current Path : /home/rtorresani/www/vendor/rector/rector/rules/DeadCode/ValueObject/ |
| Current File : //home/rtorresani/www/vendor/rector/rector/rules/DeadCode/ValueObject/TargetRemoveClassMethod.php |
<?php
declare (strict_types=1);
namespace Rector\DeadCode\ValueObject;
final class TargetRemoveClassMethod
{
/**
* @readonly
* @var string
*/
private $className;
/**
* @readonly
* @var string
*/
private $methodName;
public function __construct(string $className, string $methodName)
{
$this->className = $className;
$this->methodName = $methodName;
}
public function getClassName() : string
{
return $this->className;
}
public function getMethodName() : string
{
return $this->methodName;
}
}