1 | <?php |
||
2 | |||
3 | namespace CodexShaper\DBM\MongoDB\Auth; |
||
4 | |||
5 | use Illuminate\Auth\Authenticatable; |
||
6 | use Illuminate\Auth\Passwords\CanResetPassword; |
||
7 | use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract; |
||
8 | use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; |
||
9 | use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract; |
||
10 | use Illuminate\Foundation\Auth\Access\Authorizable; |
||
11 | use Jenssegers\Mongodb\Eloquent\Model; |
||
0 ignored issues
–
show
|
|||
12 | use Laravel\Passport\HasApiTokens; |
||
13 | |||
14 | class User extends Model implements |
||
15 | AuthenticatableContract, |
||
16 | AuthorizableContract, |
||
17 | CanResetPasswordContract |
||
18 | { |
||
19 | use Authenticatable, Authorizable, CanResetPassword, HasApiTokens; |
||
20 | } |
||
21 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths