ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
IDImpl.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23class IDImpl implements ID
24{
25 public function __construct(
26 protected string $id,
27 protected string $type
28 ) {
29 }
30
31 public function id(): string
32 {
33 return $this->id;
34 }
35
36 public function type(): string
37 {
38 return $this->type;
39 }
40}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(protected string $id, protected string $type)
Definition: IDImpl.php:25