Skip to content

Commit

Permalink
Update SearchyServiceProvider.php
Browse files Browse the repository at this point in the history
Fix bug in service provider class.
  • Loading branch information
vinkla authored Jan 30, 2017
1 parent 92feab6 commit 221627e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SearchyServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function registerSearchBuilder()
return new SearchBuilder($config);
});

$this->app->alias('searchy', HashidsFactory::class);
$this->app->alias('searchy', SearchBuilder::class);
}

/**
Expand Down

2 comments on commit 221627e

@TomLingham
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haha! Thanks @vinkla. Didn't notice that. Probably been there for a while :)

@vinkla
Copy link
Contributor Author

@vinkla vinkla commented on 221627e Jan 31, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.