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 e71f3be commit c014fd4Copy full SHA for c014fd4
webapp/src/Twig/TwigExtension.php
@@ -1112,7 +1112,8 @@ public function printMetadata(?string $metadata): string
1112
. Utils::printsize((int)($metadata['memory-bytes'])) . ', '
1113
. '<i class="far fa-question-circle" title="exit-status"></i> '
1114
. 'exit-code: ' . $metadata['exitcode']
1115
- . (($metadata['signal'] ?? -1) > 0 ? ' signal: ' . $metadata['signal'] : '');
+ . (($metadata['signal'] ?? -1) > 0 ? ' signal: ' . $metadata['signal'] : '')
1116
+ . '</span>';
1117
}
1118
1119
public function printWarningContent(ExternalSourceWarning $warning): string
0 commit comments