Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: StatementExitPoint.php
<?php declare(strict_types = 1); namespace PHPStan\Analyser; use PhpParser\Node\Stmt; class StatementExitPoint { /** @var Stmt */ private $statement; /** @var Scope */ private $scope; public function __construct(Stmt $statement, Scope $scope) { $this->statement = $statement; $this->scope = $scope; } public function getStatement(): Stmt { return $this->statement; } public function getScope(): Scope { return $this->scope; } }