Skip to content

Commit

Permalink
Return the blade instance from the configuration method
Browse files Browse the repository at this point in the history
  • Loading branch information
ibnsultan authored Sep 23, 2024
1 parent f6ea995 commit b4a3a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function __construct(string $viewPaths = null, string $cachePath = null)
public function configure(string $viewPaths, string $cachePath)
{
$this->blade = new \Jenssegers\Blade\Blade($viewPaths, $cachePath);
return $this->blade;
return $this->blade; // Temporary Fix: Issue #5
}

/**
Expand Down

0 comments on commit b4a3a5f

Please sign in to comment.