Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpDev07 committed Mar 23, 2022
1 parent 6d72cae commit 7750db3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ return [

'project' => env('LOGSNAG_PROJECT', 'laravel'),

'token' => env('LOGSNAG_TOKEN', '8aeda3b803f711b7362a4ea24af11f4f'),
'token' => env('LOGSNAG_TOKEN', ''),

];
```
Expand Down
2 changes: 1 addition & 1 deletion src/LogsnagServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function configurePackage(Package $package): void
protected function registerContainerBindings(): void
{
$this->app->instance(LogsnagClient::class, new LogsnagClient(
token: config('logsnag.token'),
token: config('logsnag.token', ''),
));
}

Expand Down

0 comments on commit 7750db3

Please sign in to comment.