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

Commit 29e2f9c

Browse files
stevebaumanStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent f2b96ab commit 29e2f9c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/AdldapTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace Adldap\Laravel\Tests;
44

55
use Adldap\Laravel\Facades\Adldap;
6+
use Adldap\Laravel\Tests\Models\User as EloquentUser;
67
use Adldap\Models\User;
78
use Illuminate\Support\Facades\App;
89
use Illuminate\Support\Facades\Auth;
9-
use Adldap\Laravel\Tests\Models\User as EloquentUser;
1010
use Mockery;
1111

1212
class AdldapTest extends FunctionalTestCase
@@ -181,13 +181,13 @@ public function testConfigLoginFallback()
181181
$this->app['config']->set('adldap_auth.login_fallback', true);
182182

183183
EloquentUser::create([
184-
'email' => 'jdoe@email.com',
185-
'name' => 'John Doe',
184+
'email' => 'jdoe@email.com',
185+
'name' => 'John Doe',
186186
'password' => bcrypt('Password123'),
187187
]);
188188

189189
$credentials = [
190-
'email' => 'jdoe@email.com',
190+
'email' => 'jdoe@email.com',
191191
'password' => 'Password123',
192192
];
193193

0 commit comments

Comments
 (0)