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 3ae3cb3 commit 8d8d560Copy full SHA for 8d8d560
src/Ldap.php
@@ -435,13 +435,13 @@ public function getExtendedErrorHex(): ?string
435
*/
436
public function getExtendedErrorCode(): string|false
437
{
438
- return $this->extractDiagnosticCode($this->getExtendedError());
+ return $this->getDiagnosticCode($this->getExtendedError());
439
}
440
441
/**
442
* Extract the diagnostic code from the message.
443
444
- public function extractDiagnosticCode(string $message): string|false
+ public function getDiagnosticCode(string $message): string|false
445
446
preg_match('/^([\da-fA-F]+):/', $message, $matches);
447
0 commit comments