We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62dfd0b commit e448645Copy full SHA for e448645
1 file changed
php/src/ParseProps.php
@@ -2,7 +2,7 @@
2
3
namespace Vestaboard\Vbml;
4
5
-use Mustache_Engine;
+use Mustache\Engine;
6
7
/**
8
* Port of parseProps.ts
@@ -11,7 +11,7 @@ class ParseProps
11
{
12
public static function parse(array $props, string $template): string
13
14
- $mustache = new Mustache_Engine();
+ $mustache = new Engine();
15
return $mustache->render($template, $props);
16
}
17
0 commit comments