1 | <?php |
||
2 | |||
3 | namespace App\Fixture; |
||
4 | |||
5 | use App\Entity\AnonymousRole as AnonymousRoleEntity; |
||
6 | use Doctrine\Common\Persistence\ObjectManager; |
||
0 ignored issues
–
show
|
|||
7 | use Ds\Component\Database\Fixture\Yaml; |
||
0 ignored issues
–
show
The type
Ds\Component\Database\Fixture\Yaml 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. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths ![]() |
|||
8 | use LogicException; |
||
9 | |||
10 | /** |
||
11 | * Trait AnonymousRole |
||
12 | */ |
||
13 | trait AnonymousRole |
||
14 | { |
||
15 | use Yaml; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $path; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function load(ObjectManager $manager) |
||
26 | { |
||
27 | $objects = $this->parse($this->path); |
||
28 | |||
29 | foreach ($objects as $object) { |
||
30 | $anonymous = $this->getReference($object->anonymous); |
||
31 | |||
32 | if (!$anonymous) { |
||
33 | throw new LogicException('Anonymous "'.$object->anonymous.'" does not exist.'); |
||
34 | } |
||
35 | |||
36 | $anonymousRole = new AnonymousRoleEntity; |
||
37 | $anonymousRole |
||
38 | ->setAnonymous($anonymous) |
||
39 | ->setUuid($object->uuid) |
||
40 | ->setOwner($object->owner) |
||
41 | ->setOwnerUuid($object->owner_uuid) |
||
42 | ->setTenant($object->tenant); |
||
43 | |||
44 | $role = $this->getReference($object->role); |
||
45 | |||
46 | if (!$role) { |
||
47 | throw new LogicException('Role "'.$object->role.'" does not exist.'); |
||
48 | } |
||
49 | |||
50 | $anonymousRole->setRole($role); |
||
51 | |||
52 | foreach ($object->business_units as $uuid) { |
||
53 | $businessUnit = $this->getReference($uuid); |
||
54 | |||
55 | if (!$businessUnit) { |
||
56 | throw new LogicException('Business Unit "'.$uuid.'" does not exist.'); |
||
57 | } |
||
58 | |||
59 | $anonymousRole->addBusinessUnit($businessUnit); |
||
60 | } |
||
61 | |||
62 | $manager->persist($anonymousRole); |
||
63 | } |
||
64 | |||
65 | $manager->flush(); |
||
66 | } |
||
67 | } |
||
68 |
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