10000 Fix CS · symfony/symfony@fcfc95e · GitHub
[go: up one dir, main page]

Skip to content

Commit fcfc95e

Browse files
committed
Fix CS
1 parent ad50ccf commit fcfc95e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private function getConnectionResource()
124124
}
125125

126126
/**
127-
* @param string $dn Distinguished name to batch modify
127+
* @param string $dn Distinguished name to batch modify
128128
* @param iterable|UpdateOperation[] $modifications An array or iterable of Modification instances
129129
*
130130
* @throws UpdateOperationException in case of an error

src/Symfony/Component/Ldap/Adapter/ExtLdap/UpdateOperation.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ class UpdateOperation
2727
);
2828

2929
/**
30-
*
3130
* @param int $operationType An LDAP_MODIFY_BATCH_* constant
32-
* @param string $attribute The attribute to batch modify on
31+
* @param string $attribute The attribute to batch modify on
3332
* @param array|null $values
3433
*
3534
* @throws UpdateOperationException on consistency errors during construction
@@ -64,11 +63,12 @@ private function assertValidOperationType(int $operationType): void
6463
}
6564

6665
/**
67-
* @param int $operationType
66+
* @param int $operationType
6867
* @param array|null $values
68+
*
6969
* @throws \Symfony\Component\Ldap\Exception\UpdateOperationException
7070
*/
71-
private function assertNullValuesOnRemoveAll(int $operationType, ?array $values) : void
71+
private function assertNullValuesOnRemoveAll(int $operationType, ?array $values): void
7272
{
7373
if (LDAP_MODIFY_BATCH_REMOVE_ALL === $operationType && null !== $values) {
7474
throw new UpdateOperationException(sprintf('$values must be null for LDAP_MODIFY_BATCH_REMOVE_ALL operation, "%s" given.', gettype($values)));

0 commit comments

Comments
 (0)
0