8000 Typo - Fix bad classnames in Exceptions docblocks · symfony/symfony@7d1fefe · GitHub
[go: up one dir, main page]

Skip to content

Commit 7d1fefe

Browse files
Mathieudewetchalasr
authored andcommitted
Typo - Fix bad classnames in Exceptions docblocks
1 parent ce37267 commit 7d1fefe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/Symfony/Component/Ldap/Exception/AlreadyExistsException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Hamza Amrouche <hamza.simperfit@gmail.com>
1818
*/
19-
class AlreadyExistsException extends ConnectionException implements ExceptionInterface
19+
class AlreadyExistsException extends ConnectionException
2020
{
2121
}

src/Symfony/Component/Ldap/Exception/ConnectionTimeoutException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
namespace Symfony\Component\Ldap\Exception;
1313

1414
/**
15-
* ConnectionException is thrown if binding to ldap time out.
15+
* ConnectionTimeoutException is thrown if binding to ldap time out.
1616
*
1717
* @author Hamza Amrouche <hamza.simperfit@gmail.com>
1818
*/
19-
class ConnectionTimeoutException extends ConnectionException implements ExceptionInterface
19+
class ConnectionTimeoutException extends ConnectionException
2020
{
2121
}

src/Symfony/Component/Ldap/Exception/InvalidCredentialsException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
namespace Symfony\Component\Ldap\Exception;
1313

1414
/**
15-
* ConnectionException is thrown if binding to ldap has been done with invalid credentials .
15+
* InvalidCredentialsException is thrown if binding to ldap has been done with invalid credentials.
1616
*
1717
* @author Hamza Amrouche <hamza.simperfit@gmail.com>
1818
*/
19-
class InvalidCredentialsException extends ConnectionException implements ExceptionInterface
19+
class InvalidCredentialsException extends ConnectionException
2020
{
2121
}

0 commit comments

Comments
 (0)
0