Skip to content

Commit 882f2ec

Browse files
committed
Fix style
1 parent 239f5bb commit 882f2ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Pug/AssetsTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class AssetsTest extends \PHPUnit_Framework_TestCase
99
{
10-
static private function cleanUp()
10+
private static function cleanUp()
1111
{
1212
if (file_exists(__DIR__ . '/../project/web/test.css')) {
1313
unlink(__DIR__ . '/../project/web/test.css');
@@ -84,6 +84,7 @@ public function testInstance()
8484

8585
$assets->getMinify()->on('pre-write', function ($params) {
8686
$params->content = str_replace('red', 'blue', $params->content);
87+
8788
return $params;
8889
});
8990
$html = trim(str_replace(["\r", "\n"], '', $pug->render($template)));

0 commit comments

Comments
 (0)