Skip to content

Commit

Permalink
apply phpcbf formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN authored and github-actions[bot] committed May 30, 2024
1 parent c0c0958 commit aa72f30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MongoDBServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace MongoDB\Laravel;

use Closure;
use Illuminate\Cache\CacheManager;
use Illuminate\Cache\Repository;
use Illuminate\Filesystem\FilesystemAdapter;
Expand Down Expand Up @@ -122,7 +123,7 @@ private function registerFlysystemAdapter(): void
if (is_string($bucket)) {
// Resolves the "bucket" service
$bucket = $app->get($bucket);
} elseif ($bucket instanceof \Closure) {
} elseif ($bucket instanceof Closure) {
$bucket = $bucket($app, $config);
}

Expand Down

0 comments on commit aa72f30

Please sign in to comment.