Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ClassNotFoundException.php
<?php declare(strict_types = 1); namespace PHPStan\Broker; class ClassNotFoundException extends \PHPStan\AnalysedCodeException { /** @var string */ private $className; public function __construct(string $functionName) { parent::__construct(sprintf('Class %s was not found while trying to analyse it - autoloading is probably not configured properly.', $functionName)); $this->className = $functionName; } public function getClassName(): string { return $this->className; } }