From 46775c2288956cef3c8417c9a48218308195d433 Mon Sep 17 00:00:00 2001
From: Tim van Dijen <tvdijen@gmail.com>
Date: Fri, 31 May 2024 19:05:29 +0200
Subject: [PATCH] Fix for optional parameter

---
 stubs/krb5.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stubs/krb5.php b/stubs/krb5.php
index 9fbfcca..04726eb 100644
--- a/stubs/krb5.php
+++ b/stubs/krb5.php
@@ -6,7 +6,7 @@ class KRB5NegotiateAuth
      * @param string $keytab
      * @param string $spn|null
      */
-    public function __construct($keytab, $spn = null, GSSAPIChannelBinding $binding)
+    public function __construct($keytab, $spn = null, GSSAPIChannelBinding $binding = null)
     {
     }