Skip to content

Commit

Permalink
Merge pull request #128 from DirectoryTree/analysis-OMPnZ4
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
stevebauman authored Apr 22, 2020
2 parents 2e730c2 + 5204809 commit ba06574
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/LdapImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace LdapRecord\Laravel;

use LdapRecord\LdapRecordException;
use LdapRecord\Models\Model as LdapModel;
use Illuminate\Database\Eloquent\Model as EloquentModel;
use LdapRecord\Laravel\Events\Importing;
use LdapRecord\Laravel\Events\Synchronized;
use LdapRecord\Laravel\Events\Synchronizing;
use Illuminate\Database\Eloquent\Model as EloquentModel;
use LdapRecord\LdapRecordException;
use LdapRecord\Models\Model as LdapModel;

class LdapImporter
{
Expand Down
2 changes: 1 addition & 1 deletion tests/LdapImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Support\Facades\Schema;
use LdapRecord\LdapRecordException;
use LdapRecord\Laravel\ImportableFromLdap;
use LdapRecord\Laravel\LdapImportable;
use LdapRecord\Laravel\LdapImporter;
use LdapRecord\Laravel\Testing\DirectoryEmulator;
use LdapRecord\LdapRecordException;
use LdapRecord\Models\ActiveDirectory\Group as LdapGroup;

class LdapImporterTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/LiveAuthenticationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function test_database_sync_authentication_passes()
$user = User::create([
'cn' => 'John',
'mail' => '[email protected]',
'objectguid' => $this->faker->uuid
'objectguid' => $this->faker->uuid,
]);

$fake->actingAs($user);
Expand Down

0 comments on commit ba06574

Please sign in to comment.