rector/rules/Php80/ValueObject/MatchResult.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

33 lines
674 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\ValueObject;
use PhpParser\Node\Expr\Match_;
final class MatchResult
{
/**
* @readonly
* @var \PhpParser\Node\Expr\Match_
*/
private $match;
/**
* @readonly
* @var bool
*/
private $shouldRemoveNextStmt;
public function __construct(Match_ $match, bool $shouldRemoveNextStmt)
{
$this->match = $match;
$this->shouldRemoveNextStmt = $shouldRemoveNextStmt;
}
public function getMatch() : Match_
{
return $this->match;
}
public function shouldRemoveNextStmt() : bool
{
return $this->shouldRemoveNextStmt;
}
}