We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fd8668 commit f9b3583Copy full SHA for f9b3583
src/Twig/Parser/ContentParser.php
@@ -10,17 +10,18 @@
10
11
namespace BitBag\SyliusCmsPlugin\Twig\Parser;
12
13
+use Twig\Environment;
14
use Webmozart\Assert\Assert;
15
16
final class ContentParser implements ContentParserInterface
17
{
- /** @var \Twig_Environment */
18
+ /** @var Environment */
19
private $twigEnvironment;
20
21
/** @var array */
22
private $enabledFunctions;
23
- public function __construct(\Twig_Environment $twigEnvironment, array $enabledFunctions)
24
+ public function __construct(Environment $twigEnvironment, array $enabledFunctions)
25
26
$this->twigEnvironment = $twigEnvironment;
27
$this->enabledFunctions = $enabledFunctions;
0 commit comments