Skip to content

Commit b4a3a5f

Browse files
authored
Return the blade instance from the configuration method
1 parent f6ea995 commit b4a3a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function __construct(string $viewPaths = null, string $cachePath = null)
1717
public function configure(string $viewPaths, string $cachePath)
1818
{
1919
$this->blade = new \Jenssegers\Blade\Blade($viewPaths, $cachePath);
20-
return $this->blade;
20+
return $this->blade; // Temporary Fix: Issue #5
2121
}
2222

2323
/**

0 commit comments

Comments
 (0)