Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
4 / 4
CRAP
100.00% covered (success)
100.00%
1 / 1
RestrictedEntity
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
4 / 4
5
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getRequiredPermissions
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
2
 getId
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getUserId
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\IntegrationTests\Apie\TypeDemo\Resources;
3
4use Apie\Core\Attributes\Context;
5use Apie\Core\Attributes\LoggedIn;
6use Apie\Core\Attributes\RemovalCheck;
7use Apie\Core\Attributes\StaticCheck;
8use Apie\Core\ContextConstants;
9use Apie\Core\Entities\EntityInterface;
10use Apie\Core\Lists\PermissionList;
11use Apie\Core\Permissions\RequiresPermissionsInterface;
12use Apie\IntegrationTests\Apie\TypeDemo\Identifiers\RestrictedEntityIdentifier;
13use Apie\IntegrationTests\Apie\TypeDemo\Identifiers\UserIdentifier;
14use Apie\TextValueObjects\CompanyName;
15
16#[RemovalCheck(new StaticCheck(new LoggedIn()))]
17final class RestrictedEntity implements EntityInterface, RequiresPermissionsInterface
18{
19    private ?UserIdentifier $userId = null;
20
21    public function __construct(
22        private RestrictedEntityIdentifier $id,
23        public CompanyName $companyName,
24        #[Context(ContextConstants::AUTHENTICATED_USER)]
25        ?User $user = null
26    ) {
27        $this->userId = $user?->getId();
28    }
29
30    public function getRequiredPermissions(): PermissionList
31    {
32        if ($this->userId) {
33            return new PermissionList([$this->userId->toPermission()]);
34        }
35        return new PermissionList();
36    }
37
38    public function getId(): RestrictedEntityIdentifier
39    {
40        return $this->id;
41    }
42
43    public function getUserId(): ?UserIdentifier
44    {
45        return $this->userId;
46    }
47}