Skip to content

Commit ad9325c

Browse files
keradusnicolas-grekas
authored andcommitted
DX: re-apply PHP CS Fixer, partially
1 parent 2df7ad4 commit ad9325c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Adapter/ConnectionInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ public function isBound(): bool;
2828
/**
2929
* Binds the connection against a user's DN and password.
3030
*
31+
* @return void
32+
*
3133
* @throws AlreadyExistsException When the connection can't be created because of an LDAP_ALREADY_EXISTS error
3234
* @throws ConnectionTimeoutException When the connection can't be created because of an LDAP_TIMEOUT error
3335
* @throws InvalidCredentialsException When the connection can't be created because of an LDAP_INVALID_CREDENTIALS error
34-
*
35-
* @return void
3636
*/
3737
public function bind(string $dn = null, #[\SensitiveParameter] string $password = null);
3838
}

LdapInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ interface LdapInterface
2828
/**
2929
* Return a connection bound to the ldap.
3030
*
31-
* @throws ConnectionException if dn / password could not be bound
32-
*
3331
* @return void
32+
*
33+
* @throws ConnectionException if dn / password could not be bound
3434
*/
3535
public function bind(string $dn = null, #[\SensitiveParameter] string $password = null);
3636

0 commit comments

Comments
 (0)