We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b06e9a7 commit 0615a08Copy full SHA for 0615a08
src/LdapInterface.php
@@ -285,7 +285,7 @@ interface LdapInterface
285
/**
286
* Set the current connection to use TLS (ldaps:// protocol).
287
*/
288
- public function setSSL(): static;
+ public function setSSL(bool $enabled = true): static;
289
290
291
* Determine if the current connection instance is using TLS (ldaps:// protocol).
@@ -295,7 +295,7 @@ public function isUsingTLS(): bool;
295
296
* Set the current connection to use STARTTLS (ldap:// with upgrade).
297
298
- public function setStartTLS(): static;
+ public function setStartTLS(bool $enabled = true): static;
299
300
301
* Determine if the current connection instance is using STARTTLS (ldap:// with upgrade).
0 commit comments