rector/packages/NodeCollector/ValueObject/ArrayCallableDynamicMethod.php
Tomas Votruba 503a6059f8 Updated Rector to commit a8922f7431c9c9188be501107ee7819e0130da4c
a8922f7431 skip temporarily match + throws downagrade in symfony/console, very unlikely to run
2023-06-11 23:01:39 +00:00

48 lines
941 B
PHP

<?php
declare (strict_types=1);
namespace Rector\NodeCollector\ValueObject;
use PhpParser\Node\Expr;
use Rector\Core\Validation\RectorAssert;
/**
* @api
*/
final class ArrayCallableDynamicMethod
{
/**
* @readonly
* @var \PhpParser\Node\Expr
*/
private $callerExpr;
/**
* @readonly
* @var string
*/
private $class;
/**
* @readonly
* @var \PhpParser\Node\Expr
*/
private $method;
public function __construct(Expr $callerExpr, string $class, Expr $method)
{
$this->callerExpr = $callerExpr;
$this->class = $class;
$this->method = $method;
RectorAssert::className($class);
}
public function getClass() : string
{
return $this->class;
}
public function getMethod() : Expr
{
return $this->method;
}
public function getCallerExpr() : Expr
{
return $this->callerExpr;
}
}