Issues (533)

src/Models/PersonNameRomn.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace FamilyTree365\LaravelGedcom\Models;
4
5
use Illuminate\Database\Eloquent\Model;
0 ignored issues
show
The type Illuminate\Database\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...
6
7
/**
8
 * @property int    $id
9
 * @property string $group
10
 * @property int    $gid
11
 * @property string $type
12
 * @property string $name
13
 * @property string $npfx
14
 * @property string $givn
15
 * @property string $nick
16
 * @property string $spfx
17
 * @property string $surn
18
 * @property string $nsfx
19
 * @property string $created_at
20
 * @property string $updated_at
21
 */
22
class PersonNameRomn extends Model
23
{
24
    /**
25
     * The table associated with the model.
26
     *
27
     * @var string
28
     */
29
    protected $table = 'person_name_romn';
30
31
    /**
32
     * The "type" of the auto-incrementing ID.
33
     *
34
     * @var string
35
     */
36
    protected $keyType = 'integer';
37
38
    /**
39
     * @var array
40
     */
41
    protected $fillable = ['group', 'gid', 'type', 'name', 'npfx', 'givn', 'nick', 'spfx', 'surn', 'nsfx', 'created_at', 'updated_at'];
42
}
43