Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ClassNameNodePair.php
<?php declare(strict_types = 1); namespace PHPStan\Rules; use PhpParser\Node; class ClassNameNodePair { /** @var string */ private $className; /** @var Node */ private $node; public function __construct(string $className, Node $node) { $this->className = $className; $this->node = $node; } public function getClassName(): string { return $this->className; } public function getNode(): Node { return $this->node; } }