Fixed typo

This commit is contained in:
Graham Campbell 2016-05-25 09:55:07 +01:00
parent 90419e70cf
commit 2e9d56d053

View File

@ -80,7 +80,7 @@ class AppServiceProvider extends ServiceProvider
{
$this->app->singleton(Release::class, function ($app) {
$cache = $app['cache.store'];
$token = $app['config']->get('services.github.token')
$token = $app['config']->get('services.github.token');
return new Release($cache, $token);
});