Commit 476e24ef by Alexander Makarov

Merge pull request #5394 from IndeedPlusPlus/patch-1

add missing semicolon, fixes #5393
parents 816e8ee3 798a22be
......@@ -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; ?>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment