Skip to content

Commit e448645

Browse files
committed
Remove mustache v3 deprecation
1 parent 62dfd0b commit e448645

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

php/src/ParseProps.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Vestaboard\Vbml;
44

5-
use Mustache_Engine;
5+
use Mustache\Engine;
66

77
/**
88
* Port of parseProps.ts
@@ -11,7 +11,7 @@ class ParseProps
1111
{
1212
public static function parse(array $props, string $template): string
1313
{
14-
$mustache = new Mustache_Engine();
14+
$mustache = new Engine();
1515
return $mustache->render($template, $props);
1616
}
1717
}

0 commit comments

Comments
 (0)