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