ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Settings.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
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}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(protected int $id, protected bool $ppic)
Definition: Settings.php:25