Skip to content

Commit d30e3b2

Browse files
committed
style: fix indentation
1 parent 849b142 commit d30e3b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/View/Parser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@ protected function parsePair(string $variable, array $data, string $template): a
329329
// Find all matches of space-flexible versions of {tag}{/tag} so we
330330
// have something to loop over.
331331
preg_match_all(
332-
'#' . $this->leftDelimiter . '\s*' . preg_quote($variable) . '\s*' . $this->rightDelimiter . '(.+?)' .
333-
$this->leftDelimiter . '\s*' . '/' . preg_quote($variable) . '\s*' . $this->rightDelimiter . '#s', $template, $matches, PREG_SET_ORDER
332+
'#' . $this->leftDelimiter . '\s*' . preg_quote($variable) . '\s*' . $this->rightDelimiter . '(.+?)' .
333+
$this->leftDelimiter . '\s*' . '/' . preg_quote($variable) . '\s*' . $this->rightDelimiter . '#s', $template, $matches, PREG_SET_ORDER
334334
);
335335

336336
/*

0 commit comments

Comments
 (0)