Skip to content

Commit c69e200

Browse files
committed
Merge pull request #15 from rozklad/master
Custom directives support
2 parents 0116580 + 95a8f47 commit c69e200

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/Flynsarmy/DbBladeCompiler/DbBladeCompiler.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ public function __construct($filesystem, $cache_path, $config, $app)
1515
$blade = $app->make('blade.compiler');
1616

1717
parent::__construct($filesystem, $cache_path);
18-
$this->rawTags = $blade->getRawTags();
19-
$this->contentTags = $blade->getContentTags();
20-
$this->escapedTags = $blade->getEscapedContentTags();
21-
$this->extensions = $blade->getExtensions();
22-
$this->config = $config;
18+
$this->rawTags = $blade->getRawTags();
19+
$this->contentTags = $blade->getContentTags();
20+
$this->escapedTags = $blade->getEscapedContentTags();
21+
$this->extensions = $blade->getExtensions();
22+
$this->customDirectives = $blade->getCustomDirectives();
23+
$this->config = $config;
2324
}
2425

2526
/**

0 commit comments

Comments
 (0)