Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
fix: register view finder
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian authored Jun 8, 2021
1 parent 6e958ea commit 6adf7bf
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/CommonMarkServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,27 @@
class CommonMarkServiceProvider extends ServiceProvider
{
/**
* Boot services.
* Register services.
*
* @return void
*/
public function boot()
public function register(): void
{
$this->registerPublishers();
$this->registerViewFinder();

$this->registerBladeEngines();
}

$this->registerCommonMarkEnvironment();
/**
* Boot services.
*
* @return void
*/
public function boot(): void
{
$this->registerPublishers();

$this->registerViewFinder();
$this->registerCommonMarkEnvironment();
}

/**
Expand Down

0 comments on commit 6adf7bf

Please sign in to comment.