ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.SkillProfileCompletion.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 namespace ILIAS\Skill\Profile;
23 
28 {
29  protected int $profile_id = 0;
30  protected int $user_id = 0;
31  protected string $date = "";
32  protected bool $fulfilled = false;
33 
34  public function __construct(
35  int $profile_id,
36  int $user_id,
37  string $date,
38  bool $fulfilled
39  ) {
40  $this->profile_id = $profile_id;
41  $this->user_id = $user_id;
42  $this->date = $date;
43  $this->fulfilled = $fulfilled;
44  }
45 
46  public function getProfileId(): int
47  {
48  return $this->profile_id;
49  }
50 
51  public function getUserId(): int
52  {
53  return $this->user_id;
54  }
55 
56  public function getDate(): string
57  {
58  return $this->date;
59  }
60 
61  public function getFulfilled(): bool
62  {
63  return $this->fulfilled;
64  }
65 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $profile_id, int $user_id, string $date, bool $fulfilled)