Skip to content

Commit 4e127f5

Browse files
committed
CS: Unary operators should be placed adjacent to their operands
1 parent 5fb2742 commit 4e127f5

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)