Skip to content

Commit

Permalink
#68 Fix indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Imanuel Ulbricht <[email protected]>
  • Loading branch information
DerKnerd committed Aug 2, 2021
1 parent ae86802 commit 295d6de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@
/laminas-mkdoc-theme.tgz
/laminas-mkdoc-theme/
/phpunit.xml
/vendor/
.idea
/vendor/
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function filter(string $value): string
}

$pcreInfo = $this->getPatternAndReplacement(
// a unicode safe way of converting characters to \x00\x00 notation
// a unicode safe way of converting characters to \x00\x00 notation
preg_quote('_', '#')
);

Expand Down Expand Up @@ -71,7 +71,7 @@ function ($matches) {
)
: new PcreReplacement(
'#(' . $pregQuotedSeparator . ')'
. '([^\p{Z}\p{Ll}]{1}|[a-zA-Z]{1})#u',
. '([^\p{Z}\p{Ll}]{1}|[a-zA-Z]{1})#u',
function ($matches) {
return strtoupper($matches[2]);
}
Expand Down

0 comments on commit 295d6de

Please sign in to comment.