Total Complexity | 7 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | #[ORM\Entity(repositoryClass: XApiActivityProfileRepository::class)] |
||
9 | class XApiActivityProfile |
||
10 | { |
||
11 | #[ORM\Id] |
||
12 | #[ORM\GeneratedValue] |
||
13 | #[ORM\Column] |
||
14 | private ?int $id = null; |
||
15 | |||
16 | #[ORM\Column(length: 255)] |
||
17 | private ?string $profileId = null; |
||
18 | |||
19 | #[ORM\Column(length: 255)] |
||
20 | private ?string $activityId = null; |
||
21 | |||
22 | #[ORM\Column] |
||
23 | private array $documentData = []; |
||
24 | |||
25 | public function getId(): ?int |
||
28 | } |
||
29 | |||
30 | public function getProfileId(): ?string |
||
33 | } |
||
34 | |||
35 | public function setProfileId(string $profileId): static |
||
40 | } |
||
41 | |||
42 | public function getActivityId(): ?string |
||
45 | } |
||
46 | |||
47 | public function setActivityId(string $activityId): static |
||
48 | { |
||
49 | $this->activityId = $activityId; |
||
50 | |||
51 | return $this; |
||
52 | } |
||
53 | |||
54 | public function getDocumentData(): array |
||
55 | { |
||
56 | return $this->documentData; |
||
57 | } |
||
58 | |||
59 | public function setDocumentData(array $documentData): static |
||
64 | } |
||
65 | } |
||
66 |