Issues (124)

src/MongoDB/Auth/User.php (1 issue)

Labels
Severity
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
The type Jenssegers\Mongodb\Eloquent\Model was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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