Issues (51)

config/blueprints.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
5
    /*
6
     |--------------------------------------------------------------------------
7
     | Blueprints
8
     |--------------------------------------------------------------------------
9
     |
10
     | Blueprints are used to define the Schema of your tables for migrations.
11
     | Some of the columns that can be defined using blueprints will pull
12
     | from this configuration file. Hopefully it's straight forward.
13
     |
14
     */
15
16
    'money' => [
17
        'total' => 10,
18
        'places' => 2
19
    ],
20
21
    'percent' => [
22
        'total' => 6,
23
        'places' => 4
24
    ],
25
26
    'belongsTo' => [
27
        'onUpdate' => 'CASCADE',
28
        'onDelete' => 'NO ACTION'
29
    ],
30
31
    'timestampsBy' => [
32
        'model' => App\User::class
0 ignored issues
show
The type App\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