Skip to content

Commit bf62f7b

Browse files
committed
run cs-fix
1 parent 6f680e9 commit bf62f7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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)