| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 19 | 
| Code Lines | 14 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 24 | public function load(ObjectManager $manager)  | 
            ||
| 25 |     { | 
            ||
| 26 | $objects = $this->parse($this->path);  | 
            ||
| 27 | |||
| 28 |         foreach ($objects as $object) { | 
            ||
| 29 | $asset = new AssetEntity;  | 
            ||
| 30 | $asset  | 
            ||
| 31 | ->setUuid($object->uuid)  | 
            ||
| 32 | ->setOwner($object->owner)  | 
            ||
| 33 | ->setOwnerUuid($object->owner_uuid)  | 
            ||
| 34 | ->setIdentity($object->identity)  | 
            ||
| 35 | ->setIdentityUuid($object->identity_uuid)  | 
            ||
| 36 | ->setTitle((array) $object->title)  | 
            ||
| 37 | ->setData((array) $object->data)  | 
            ||
| 38 | ->setTenant($object->tenant);  | 
            ||
| 39 | $manager->persist($asset);  | 
            ||
| 40 | }  | 
            ||
| 41 | |||
| 42 | $manager->flush();  | 
            ||
| 43 | }  | 
            ||
| 45 | 
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