Skip to content

Commit c5daa42

Browse files
committed
Fix ternary precedence
1 parent 365526c commit c5daa42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/php/lang/meta/MetaInformation.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function propertyModifiers($reflect) {
205205
return $reflect->getModifiers() | (int)$meta[0];
206206
} else {
207207
$tags= $this->tags($reflect);
208-
return $reflect->getModifiers() | isset($tags['final']) ? MODIFIER_FINAL : 0;
208+
return $reflect->getModifiers() | (isset($tags['final']) ? MODIFIER_FINAL : 0);
209209
}
210210
}
211211

0 commit comments

Comments
 (0)