mirror of
https://github.com/flarum/core.git
synced 2025-10-10 22:44:25 +02:00
10 lines
156 B
PHP
10 lines
156 B
PHP
<?php namespace Flarum\Assets;
|
|
|
|
class JsCompiler extends RevisionCompiler
|
|
{
|
|
public function format($string)
|
|
{
|
|
return $string.";\n";
|
|
}
|
|
}
|