Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public static function loadMetadata(ORM\ClassMetadata $metadata) |
||
26 | { |
||
27 | $builder = new ClassMetadataBuilder($metadata); |
||
28 | $builder |
||
29 | ->setTable('plugin_crm_pipedrive_owners') |
||
30 | ->addIndex(['email'], 'email') |
||
31 | ->addIndex(['owner_id'], 'owner_id') |
||
32 | ; |
||
33 | |||
34 | $builder->addId(); |
||
35 | $builder->addNamedField('email', 'string', 'email'); |
||
36 | $builder->addNamedField('ownerId', 'integer', 'owner_id', true); |
||
37 | } |
||
87 |
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