Skip to content

Commit 23e8423

Browse files
committed
fix ci, remove use from current namespace
1 parent e107901 commit 23e8423

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Jenssegers/Mongodb/Eloquent/HybridRelations.php

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use Illuminate\Database\Eloquent\Relations\MorphMany;
66
use Illuminate\Database\Eloquent\Relations\MorphOne;
77
use Illuminate\Support\Str;
8-
use Jenssegers\Mongodb\Eloquent\Builder;
98
use Jenssegers\Mongodb\Helpers\EloquentBuilder;
109
use Jenssegers\Mongodb\Relations\BelongsTo;
1110
use Jenssegers\Mongodb\Relations\BelongsToMany;

tests/models/User.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99

1010
class User extends Eloquent implements AuthenticatableContract, CanResetPasswordContract
1111
{
12-
use Authenticatable, CanResetPassword;
13-
use HybridRelations;
12+
use Authenticatable, CanResetPassword, HybridRelations;
1413

1514
protected $connection = 'mongodb';
1615
protected $dates = ['birthday', 'entry.date'];

0 commit comments

Comments
 (0)