ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.SkillProfileCompletion.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Skill\Profile;
22
27{
28 protected int $profile_id = 0;
29 protected int $user_id = 0;
30 protected string $date = "";
31 protected bool $fulfilled = false;
32
33 public function __construct(
34 int $profile_id,
35 int $user_id,
36 string $date,
37 bool $fulfilled
38 ) {
39 $this->profile_id = $profile_id;
40 $this->user_id = $user_id;
41 $this->date = $date;
42 $this->fulfilled = $fulfilled;
43 }
44
45 public function getProfileId(): int
46 {
47 return $this->profile_id;
48 }
49
50 public function getUserId(): int
51 {
52 return $this->user_id;
53 }
54
55 public function getDate(): string
56 {
57 return $this->date;
58 }
59
60 public function getFulfilled(): bool
61 {
62 return $this->fulfilled;
63 }
64}
__construct(int $profile_id, int $user_id, string $date, bool $fulfilled)