8000 Follow the code style checks · Adldap2/Adldap2-Laravel@385f9ba · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 385f9ba

Browse files
committed
Follow the code style checks
1 parent ea14abb commit 385f9ba

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Resolvers/UserResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ protected function getLdapAuthProvider(): ProviderInterface
203203
{
204204
$provider = $this->ldap->getProvider($this->connection ?? $this->getLdapAuthConnectionName());
205205

206-
if (!$provider->getConnection()->isBound()) {
206+
if (! $provider->getConnection()->isBound()) {
207207
// We'll make sure we have a bound connection before
208208
// allowing dynamic calls on the default provider.
209209
$provider->connect();

tests/DatabaseProviderTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
use Adldap\Connections\ProviderInterface;
99
use Adldap\Laravel\Commands\Import;
1010
use Adldap\Laravel\Facades\Resolver;
11-
use Adldap\Laravel\Resolvers\ResolverInterface;
12-
use Adldap\Laravel\Resolvers\UserResolver;
1311
use Adldap\Laravel\Tests\Handlers\LdapAttributeHandler;
1412
use Adldap\Laravel\Tests\Models\TestUser as EloquentUser;
1513
use Adldap\Laravel\Tests\Scopes\JohnDoeScope;

0 commit comments

Comments
 (0)
0