Typo - Fix bad classnames in Exceptions docblocks

This commit is contained in:
Mdewet 2019-08-19 15:00:51 +02:00 committed by Robin Chalas
parent ce372672d0
commit 7d1fefe8b8
3 changed files with 5 additions and 5 deletions

View File

@ -16,6 +16,6 @@ namespace Symfony\Component\Ldap\Exception;
* *
* @author Hamza Amrouche <hamza.simperfit@gmail.com> * @author Hamza Amrouche <hamza.simperfit@gmail.com>
*/ */
class AlreadyExistsException extends ConnectionException implements ExceptionInterface class AlreadyExistsException extends ConnectionException
{ {
} }

View File

@ -12,10 +12,10 @@
namespace Symfony\Component\Ldap\Exception; 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 <hamza.simperfit@gmail.com> * @author Hamza Amrouche <hamza.simperfit@gmail.com>
*/ */
class ConnectionTimeoutException extends ConnectionException implements ExceptionInterface class ConnectionTimeoutException extends ConnectionException
{ {
} }

View File

@ -12,10 +12,10 @@
namespace Symfony\Component\Ldap\Exception; 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 <hamza.simperfit@gmail.com> * @author Hamza Amrouche <hamza.simperfit@gmail.com>
*/ */
class InvalidCredentialsException extends ConnectionException implements ExceptionInterface class InvalidCredentialsException extends ConnectionException
{ {
} }