We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa08cd8 commit b65b17bCopy full SHA for b65b17b
src/Flynsarmy/DbBladeCompiler/DbBladeCompiler.php
@@ -12,7 +12,11 @@ class DbBladeCompiler extends BladeCompiler implements CompilerInterface
12
public function __construct($filesystem, $cache_path, $config)
13
{
14
parent::__construct($filesystem, $cache_path);
15
- $this->config = $config;
+ $this->rawTags = Blade::getRawTags();
16
+ $this->contentTags = Blade::getContentTags();
17
+ $this->escapedTags = Blade::getEscapedContentTags();
18
+ $this->extensions = Blade::getExtensions();
19
+ $this->config = $config;
20
}
21
22
/**
0 commit comments