Skip to content

Commit 600ef7f

Browse files
committed
minor #14090 CS: Unary operators should be placed adjacent to their operands (keradus)
This PR was merged into the 2.3 branch. Discussion ---------- CS: Unary operators should be placed adjacent to their operands | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | ? | Fixed tickets | N/A | License | MIT | Doc PR | N/A Update before upcoming changes on PHP CS Fixer 1.7 To keep fabbot.io happy ;) Commits ------- 2367f4a CS: Unary operators should be placed adjacent to their operands
2 parents 1104426 + 4e127f5 commit 600ef7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Loader/ArrayLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function load($resource, $locale, $domain = 'messages')
5353
private function flatten(array &$messages, array $subnode = null, $path = null)
5454
{
5555
if (null === $subnode) {
56-
$subnode = & $messages;
56+
$subnode = &$messages;
5757
}
5858
foreach ($subnode as $key => $value) {
5959
if (is_array($value)) {

0 commit comments

Comments
 (0)