We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365526c commit c5daa42Copy full SHA for c5daa42
src/main/php/lang/meta/MetaInformation.class.php
@@ -205,7 +205,7 @@ public function propertyModifiers($reflect) {
205
return $reflect->getModifiers() | (int)$meta[0];
206
} else {
207
$tags= $this->tags($reflect);
208
- return $reflect->getModifiers() | isset($tags['final']) ? MODIFIER_FINAL : 0;
+ return $reflect->getModifiers() | (isset($tags['final']) ? MODIFIER_FINAL : 0);
209
}
210
211
0 commit comments