Skip to content

Commit

Permalink
Merge pull request #76 from micaelpdias/patch-1
Browse files Browse the repository at this point in the history
Fix missing method
  • Loading branch information
jenssegers committed Jan 10, 2017
2 parents 7a9bfa1 + 1cd2183 commit 8fdeda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AgentServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function boot()
*/
public function register()
{
$this->app['agent'] = $this->app->share(function ($app)
$this->app->singleton('agent', function ($app)
{
return new Agent($app['request']->server->all());
});
Expand Down

0 comments on commit 8fdeda3

Please sign in to comment.