From 7d1fefe8b8b66e74a3e2593c7be5967a120a7c8b Mon Sep 17 00:00:00 2001 From: Mdewet Date: Mon, 19 Aug 2019 15:00:51 +0200 Subject: [PATCH] Typo - Fix bad classnames in Exceptions docblocks --- .../Component/Ldap/Exception/AlreadyExistsException.php | 2 +- .../Component/Ldap/Exception/ConnectionTimeoutException.php | 4 ++-- .../Component/Ldap/Exception/InvalidCredentialsException.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Ldap/Exception/AlreadyExistsException.php b/src/Symfony/Component/Ldap/Exception/AlreadyExistsException.php index 51635037ac..8ab7d5e6e8 100644 --- a/src/Symfony/Component/Ldap/Exception/AlreadyExistsException.php +++ b/src/Symfony/Component/Ldap/Exception/AlreadyExistsException.php @@ -16,6 +16,6 @@ namespace Symfony\Component\Ldap\Exception; * * @author Hamza Amrouche */ -class AlreadyExistsException extends ConnectionException implements ExceptionInterface +class AlreadyExistsException extends ConnectionException { } diff --git a/src/Symfony/Component/Ldap/Exception/ConnectionTimeoutException.php b/src/Symfony/Component/Ldap/Exception/ConnectionTimeoutException.php index 41533412dd..bd60be7f63 100644 --- a/src/Symfony/Component/Ldap/Exception/ConnectionTimeoutException.php +++ b/src/Symfony/Component/Ldap/Exception/ConnectionTimeoutException.php @@ -12,10 +12,10 @@ namespace Symfony\Component\Ldap\Exception; /** - * ConnectionException is thrown if binding to ldap time out. + * ConnectionTimeoutException is thrown if binding to ldap time out. * * @author Hamza Amrouche */ -class ConnectionTimeoutException extends ConnectionException implements ExceptionInterface +class ConnectionTimeoutException extends ConnectionException { } diff --git a/src/Symfony/Component/Ldap/Exception/InvalidCredentialsException.php b/src/Symfony/Component/Ldap/Exception/InvalidCredentialsException.php index b5cffce9e9..74e77094c8 100644 --- a/src/Symfony/Component/Ldap/Exception/InvalidCredentialsException.php +++ b/src/Symfony/Component/Ldap/Exception/InvalidCredentialsException.php @@ -12,10 +12,10 @@ namespace Symfony\Component\Ldap\Exception; /** - * ConnectionException is thrown if binding to ldap has been done with invalid credentials . + * InvalidCredentialsException is thrown if binding to ldap has been done with invalid credentials. * * @author Hamza Amrouche */ -class InvalidCredentialsException extends ConnectionException implements ExceptionInterface +class InvalidCredentialsException extends ConnectionException { }