Skip to content

Commit

Permalink
Merge pull request #37 from amoutonbrady/master
Browse files Browse the repository at this point in the history
Fixed wrong call to method share
  • Loading branch information
jenssegers authored Jul 31, 2019
2 parents eb858e3 + f2022bc commit 34e9f99
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 @@ -72,7 +72,7 @@ public function file($path, $data = [], $mergeData = []): View

public function share($key, $value = null)
{
return $this->factory->shared($key, $value);
return $this->factory->share($key, $value);
}

public function composer($views, $callback): array
Expand Down

0 comments on commit 34e9f99

Please sign in to comment.