Skip to content

Commit 6de2e61

Browse files
committed
Applied new CS rules
1 parent 593a3ab commit 6de2e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LoggerMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ private function stripQueryItems(UriInterface $uri, array $options): UriInterfac
205205
private function renderTemplate(string $template, array $context): string
206206
{
207207
$keyValues = [];
208-
\preg_match_all("|\{\{(.*)\}\}|U", $template, $out, PREG_PATTERN_ORDER);
208+
\preg_match_all("|\{\{(.*)\}\}|U", $template, $out, \PREG_PATTERN_ORDER);
209209
foreach (\array_unique(\array_values($out[1])) as $placeHolder) {
210210
$keyValues['{{' . $placeHolder . '}}'] = getIn($context, $placeHolder, '');
211211
}

0 commit comments

Comments
 (0)