Merge pull request #5394 from IndeedPlusPlus/patch-1

add missing semicolon, fixes #5393
This commit is contained in:
Alexander Makarov
2014-10-07 12:14:02 +04:00

View File

@@ -17,7 +17,7 @@
<span class="text"><?php if ($file !== null) echo 'in ' . $handler->htmlEncode($file); ?></span>
<?php if ($method !== null): ?>
<span class="call">
<?php if ($file !== null) echo '&ndash;' ?>
<?php if ($file !== null) echo '&ndash;'; ?>
<?= ($class !== null ? $handler->addTypeLinks("$class::$method") : $handler->htmlEncode($method)) . '(' . $handler->argumentsToString($args) . ')' ?>
</span>
<?php endif; ?>