rector/rules/Visibility/ValueObject/ChangeMethodVisibility.php
Tomas Votruba d56e7982d0 Updated Rector to commit dedd4b55fe3e03cae9bd5ac822cfdccd8deb3fb6
dedd4b55fe make node_helper.php safe for similar names
2021-05-09 20:15:43 +00:00

39 lines
731 B
PHP

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