Issues (11)

config/userstamps.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
5
    /*
6
     * Define the table which is used in the database to retrieve the users
7
     */
8
9
    'users_table' => 'users',
10
11
    /*
12
     * Define the table column type which is used in the table schema for
13
     * the id of the user
14
     *
15
     * Options: increments, bigIncrements, uuid, ulid
16
     * Default: bigIncrements
17
     */
18
19
    'users_table_column_type' => 'bigIncrements',
20
21
    /*
22
     * Define the name of the column which is used in the foreign key reference
23
     * to the id of the user
24
     */
25
26
    'users_table_column_id_name' => 'id',
27
28
    /*
29
     * Define the model which is used for the relationships on your models
30
     */
31
32
    'users_model' => \App\Models\User::class,
0 ignored issues
show
The type App\Models\User 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...
33
34
    /*
35
     * Define the column which is used in the database to save the user's id
36
     * which created the model.
37
     */
38
39
    'created_by_column' => 'created_by',
40
41
    /*
42
     * Define the column which is used in the database to save the user's id
43
     * which updated the model.
44
     */
45
46
    'updated_by_column' => 'updated_by',
47
48
    /*
49
     * Define the column which is used in the database to save the user's id
50
     * which deleted the model.
51
     */
52
53
    'deleted_by_column' => 'deleted_by',
54
55
];
56