ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ObjectData.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=0);
20 
22 
24 
26 {
27  public function __construct(
28  protected int $object_id,
29  protected string $title,
30  protected string $description,
31  protected string $type
32  ) {
33  }
34 
35  public function getObjectId(): int
36  {
37  return $this->object_id;
38  }
39 
40  public function getTitle(): string
41  {
42  return $this->title;
43  }
44 
45  public function getDescription(): string
46  {
47  return $this->description;
48  }
49 
50  public function getType(): string
51  {
52  return $this->type;
53  }
54 }
__construct(protected int $object_id, protected string $title, protected string $description, protected string $type)
Definition: ObjectData.php:27