PHPStan\Broker\FunctionNotFoundException::__construct PHP Method

__construct() public method

public __construct ( string $functionName )
$functionName string
    public function __construct(string $functionName)
    {
        parent::__construct(sprintf('Function %s not found.', $functionName));
        $this->functionName = $functionName;
    }
FunctionNotFoundException