Skip to content

Commit

Permalink
minor #33240 Typo - Fix bad classnames in Exceptions docblocks (Mathi…
Browse files Browse the repository at this point in the history
…eudewet)

This PR was squashed before being merged into the 4.4 branch (closes #33240).

Discussion
----------

Typo - Fix bad classnames in Exceptions docblocks

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Set right classname in some Exceptions docblocks.

Commits
-------

7d1fefe Typo - Fix bad classnames in Exceptions docblocks
  • Loading branch information
chalasr committed Aug 19, 2019
2 parents ce37267 + 7d1fefe commit 54b6eb1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -16,6 +16,6 @@
*
* @author Hamza Amrouche <hamza.simperfit@gmail.com>
*/
class AlreadyExistsException extends ConnectionException implements ExceptionInterface
class AlreadyExistsException extends ConnectionException
{
}
Expand Up @@ -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 <hamza.simperfit@gmail.com>
*/
class ConnectionTimeoutException extends ConnectionException implements ExceptionInterface
class ConnectionTimeoutException extends ConnectionException
{
}
Expand Up @@ -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 <hamza.simperfit@gmail.com>
*/
class InvalidCredentialsException extends ConnectionException implements ExceptionInterface
class InvalidCredentialsException extends ConnectionException
{
}

0 comments on commit 54b6eb1

Please sign in to comment.