Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-villatoro committed Aug 5, 2024
1 parent 68d1188 commit 0fefed1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Facades/Lever.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Bluelightco\LeverPhp\Facades;

use Illuminate\Support\Facades\Facade;
use Bluelightco\LeverPhp\Http\Client\LeverClient;
use Illuminate\Support\Facades\Facade;

/**
* @method static \Psr\Http\Message\ResponseInterface get()
Expand Down
4 changes: 3 additions & 1 deletion src/Providers/LeverServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ class LeverServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->singleton(LeverClient::class, fn ($app) => null);
$this->app->singleton(LeverClient::class, function ($app) {
return null;
});
}

public function boot()
Expand Down

0 comments on commit 0fefed1

Please sign in to comment.