Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: MissingMethodFromReflectionException.php
<?php declare(strict_types = 1); namespace PHPStan\Reflection; class MissingMethodFromReflectionException extends \PHPStan\AnalysedCodeException { public function __construct( string $className, string $methodName, ?string $currentFilename ) { parent::__construct( sprintf( 'Method %s() was not found in reflection of class %s - probably the wrong version of class is autoloaded.%s', $methodName, $className, $currentFilename !== null ? sprintf(' The currently loaded version is at: %s', $currentFilename) : '' ) ); } }