This commit is contained in:
Maxime Renou 2020-05-11 17:09:25 +02:00
parent 5fc96dfa55
commit 16917638b5
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ return [
/**
* OAuth callback URL
*/
'redirect_url' => env('BCONNECT_REDIRECT', url('/oauth/callback')),
'redirect_url' => env('BCONNECT_REDIRECT', 'http://localhost:8000/oauth/callback'),
/**
* OAuth client id

View File

@ -13,7 +13,7 @@ class Connect
protected $app;
protected $synchronized = [];
public function __construct(array $app)
public function __construct($app)
{
$this->app = $app;
}