Skip to content

Commit 2a71e58

Browse files
CS fix
1 parent 533c5b4 commit 2a71e58

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Minifiers/BladeMinifier.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ public function render($value)
5959
if ($this->shouldMinify($value)) {
6060
$replace = [
6161
'/<!--[^\[](.*?)[^\]]-->/s' => '',
62-
"/<\?php/" => '<?php ',
63-
"/\n([\S])/" => ' $1',
64-
"/\r/" => '',
65-
"/\n/" => '',
66-
"/\t/" => ' ',
67-
"/ +/" => ' ',
62+
"/<\?php/" => '<?php ',
63+
"/\n([\S])/" => ' $1',
64+
"/\r/" => '',
65+
"/\n/" => '',
66+
"/\t/" => ' ',
67+
"/ +/" => ' ',
6868
];
6969

7070
$value = preg_replace(array_keys($replace), array_values($replace), $value);

0 commit comments

Comments
 (0)