PHPStan\Broker\ClassNotFoundException::__construct PHP Method

__construct() public method

public __construct ( string $functionName )
$functionName string
    public function __construct(string $functionName)
    {
        parent::__construct(sprintf('Class %s was not found while trying to analyse it - autoloading is not probably configured properly.', $functionName));
        $this->className = $functionName;
    }
ClassNotFoundException