ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilCertificateQueueEntry.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
25{
26 public function __construct(
27 private readonly int $objId,
28 private readonly int $userId,
29 private readonly string $adapterClass,
30 private readonly string $state,
31 private readonly int $templateId,
32 private readonly ?int $startedTimestamp = null,
33 private readonly ?int $id = null
34 ) {
35 }
36
37 public function getObjId(): int
38 {
39 return $this->objId;
40 }
41
42 public function getUserId(): int
43 {
44 return $this->userId;
45 }
46
47 public function getAdapterClass(): string
48 {
49 return $this->adapterClass;
50 }
51
52 public function getState(): string
53 {
54 return $this->state;
55 }
56
57 public function getStartedTimestamp(): int
58 {
59 return $this->startedTimestamp;
60 }
61
62 public function getId(): ?int
63 {
64 return $this->id;
65 }
66
67 public function getTemplateId(): int
68 {
69 return $this->templateId;
70 }
71}
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(private readonly int $objId, private readonly int $userId, private readonly string $adapterClass, private readonly string $state, private readonly int $templateId, private readonly ?int $startedTimestamp=null, private readonly ?int $id=null)
$objId
Definition: xapitoken.php:57