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