ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Settings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Portfolio\Settings;
22 
23 class Settings
24 {
25  public function __construct(
26  protected int $id,
27  protected bool $ppic
28  ) {
29  }
30 
31  public function getId(): int
32  {
33  return $this->id;
34  }
35 
36  public function getShowPersonalPicture(): bool
37  {
38  return $this->ppic;
39  }
40 }
__construct(protected int $id, protected bool $ppic)
Definition: Settings.php:25
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23