Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6d51eaf

Browse filesBrowse files
committed
fixed CS
1 parent e92c120 commit 6d51eaf
Copy full SHA for 6d51eaf

File tree

Expand file treeCollapse file tree

3 files changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+4
-4
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Ldap/Adapter/ExtLdap/EntryManager.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ public function rename(Entry $entry, $newRdn, $removeOldRdn = true)
113113
/**
114114
* Moves an entry on the Ldap server.
115115
*
116-
* @throws NotBoundException if the connection has not been previously bound.
117-
* @throws LdapException if an error is thrown during the rename operation.
116+
* @throws NotBoundException if the connection has not been previously bound
117+
* @throws LdapException if an error is thrown during the rename operation
118118
*/
119119
public function move(Entry $entry, string $newParent)
120120
{

‎src/Symfony/Component/Workflow/Validator/StateMachineValidator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Workflow/Validator/StateMachineValidator.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function validate(Definition $definition, $name)
4444
}
4545

4646
$initialPlaces = $definition->getInitialPlaces();
47-
if (2 <= count($initialPlaces)) {
47+
if (2 <= \count($initialPlaces)) {
4848
throw new InvalidDefinitionException(sprintf('The state machine "%s" can not store many places. But the definition has %s initial places. Only one is supported.', $name, \count($initialPlaces)));
4949
}
5050
}

‎src/Symfony/Component/Workflow/Validator/WorkflowValidator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Workflow/Validator/WorkflowValidator.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function validate(Definition $definition, $name)
5151
}
5252

5353
$initialPlaces = $definition->getInitialPlaces();
54-
if (2 <= count($initialPlaces)) {
54+
if (2 <= \count($initialPlaces)) {
5555
throw new InvalidDefinitionException(sprintf('The marking store of workflow "%s" can not store many places. But the definition has %s initial places. Only one is supported.', $name, \count($initialPlaces)));
5656
}
5757
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.