Skip to content

Commit

Permalink
facade fix
Browse files Browse the repository at this point in the history
  • Loading branch information
veneliniliev committed Jan 30, 2017
1 parent 08a3ccf commit 8030f97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Facades/MetaTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ class MetaTag extends Facade
*/
protected static function getFacadeAccessor()
{
return 'MetaTag';
return 'metatag';
}
}
2 changes: 1 addition & 1 deletion src/MetaTagsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function boot()
*/
public function register()
{
$this->app->singleton('meta-tag', function ($app) {
$this->app->singleton('metatag', function ($app) {
return new MetaTag(
$app['request'],
$app['config']['meta-tags'],
Expand Down

0 comments on commit 8030f97

Please sign in to comment.