Skip to content

Commit 209f120

Browse files
Merge pull request #6914 from ecamp/renovate/friendsofphp-php-cs-fixer-3.x
chore(deps): update dependency friendsofphp/php-cs-fixer to v3.75.0
2 parents e273e06 + bf62f7b commit 209f120

File tree

4 files changed

+19
-18
lines changed

4 files changed

+19
-18
lines changed

api/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
"require-dev": {
5555
"brianium/paratest": "v7.8.3",
56-
"friendsofphp/php-cs-fixer": "3.69.1",
56+
"friendsofphp/php-cs-fixer": "3.75.0",
5757
"hautelook/alice-bundle": "2.15.1",
5858
"justinrainbow/json-schema": "6.4.1",
5959
"php-coveralls/php-coveralls": "2.7.0",

api/composer.lock

Lines changed: 14 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/src/Util/CamelPascalNamingStrategy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public function joinColumnName($propertyName, $className = null): string {
4444
* @param null|string $referencedColumnName a property
4545
*/
4646
public function joinKeyColumnName($entityName, $referencedColumnName = null): string {
47-
return $this->classToCamelCase($entityName).
48-
ucfirst($referencedColumnName ?: $this->referenceColumnName());
47+
return $this->classToCamelCase($entityName)
48+
.ucfirst($referencedColumnName ?: $this->referenceColumnName());
4949
}
5050

5151
/**

api/src/Validator/AllowTransition/AssertAllowTransitionsValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
class AssertAllowTransitionsValidator extends ConstraintValidator {
1313
public const TO_VIOLATION_MESSAGE = 'value must be one of {{ to }}, was {{ value }}';
14-
public const FROM_VIOLATION_MESSAGE = 'This value was previously in an unexpected state,'.
15-
' expected one of {{ from }}, but was {{ previousValue }}';
14+
public const FROM_VIOLATION_MESSAGE = 'This value was previously in an unexpected state,'
15+
.' expected one of {{ from }}, but was {{ previousValue }}';
1616

1717
public function __construct(public RequestStack $requestStack) {}
1818

0 commit comments

Comments
 (0)