rector/rules/Visibility/ValueObject/ChangeMethodVisibility.php
Tomas Votruba 6472f7f4fb Updated Rector to commit fc383cc0114c4ebc5ffd2ec6c28729a4d5c02173
fc383cc011 [Scoped] Fix exclude symfony/console/Tester (#1438)
2021-12-09 13:05:29 +00:00

44 lines
888 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Visibility\ValueObject;
use Rector\Core\Validation\RectorAssert;
final class ChangeMethodVisibility
{
/**
* @readonly
* @var string
*/
private $class;
/**
* @readonly
* @var string
*/
private $method;
/**
* @readonly
* @var int
*/
private $visibility;
public function __construct(string $class, string $method, int $visibility)
{
$this->class = $class;
$this->method = $method;
$this->visibility = $visibility;
\Rector\Core\Validation\RectorAssert::className($class);
}
public function getClass() : string
{
return $this->class;
}
public function getMethod() : string
{
return $this->method;
}
public function getVisibility() : int
{
return $this->visibility;
}
}