%PDF- %PDF-
Direktori : /home2/vacivi36/code/vendor/rector/rector/src/PhpParser/ValueObject/ |
Current File : //home2/vacivi36/code/vendor/rector/rector/src/PhpParser/ValueObject/StmtsAndTokens.php |
<?php declare (strict_types=1); namespace Rector\Core\PhpParser\ValueObject; use PhpParser\Node\Stmt; final class StmtsAndTokens { /** * @var Stmt[] * @readonly */ private $stmts; /** * @var mixed[] * @readonly */ private $tokens; /** * @param Stmt[] $stmts * @param mixed[] $tokens */ public function __construct(array $stmts, array $tokens) { $this->stmts = $stmts; $this->tokens = $tokens; } /** * @return Stmt[] */ public function getStmts() : array { return $this->stmts; } /** * @return mixed[] */ public function getTokens() : array { return $this->tokens; } }