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