ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillProfileCompletion.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace 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)