Skip to content

Commit ba06574

Browse files
authored
Merge pull request #128 from DirectoryTree/analysis-OMPnZ4
Apply fixes from StyleCI
2 parents 2e730c2 + 5204809 commit ba06574

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/LdapImporter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
namespace LdapRecord\Laravel;
44

5-
use LdapRecord\LdapRecordException;
6-
use LdapRecord\Models\Model as LdapModel;
5+
use Illuminate\Database\Eloquent\Model as EloquentModel;
76
use LdapRecord\Laravel\Events\Importing;
87
use LdapRecord\Laravel\Events\Synchronized;
98
use LdapRecord\Laravel\Events\Synchronizing;
10-
use Illuminate\Database\Eloquent\Model as EloquentModel;
9+
use LdapRecord\LdapRecordException;
10+
use LdapRecord\Models\Model as LdapModel;
1111

1212
class LdapImporter
1313
{

tests/LdapImporterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
use Illuminate\Database\Schema\Blueprint;
88
use Illuminate\Foundation\Testing\WithFaker;
99
use Illuminate\Support\Facades\Schema;
10-
use LdapRecord\LdapRecordException;
1110
use LdapRecord\Laravel\ImportableFromLdap;
1211
use LdapRecord\Laravel\LdapImportable;
1312
use LdapRecord\Laravel\LdapImporter;
1413
use LdapRecord\Laravel\Testing\DirectoryEmulator;
14+
use LdapRecord\LdapRecordException;
1515
use LdapRecord\Models\ActiveDirectory\Group as LdapGroup;
1616

1717
class LdapImporterTest extends TestCase

tests/LiveAuthenticationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function test_database_sync_authentication_passes()
3838
$user = User::create([
3939
'cn' => 'John',
4040
'mail' => '[email protected]',
41-
'objectguid' => $this->faker->uuid
41+
'objectguid' => $this->faker->uuid,
4242
]);
4343

4444
$fake->actingAs($user);

0 commit comments

Comments
 (0)