ILIAS  release_8 Revision v8.24
EmployeeTalkSerieSettingsDto.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
27{
29 private int $objectId = -1;
31 private bool $lockedEditing = false;
32
38 public function __construct(
39 int $objectId,
41 ) {
42 $this->objectId = $objectId;
43 $this->lockedEditing = $lockedEditing;
44 }
45
49 public function getObjectId(): int
50 {
51 return $this->objectId;
52 }
53
59 {
60 $this->objectId = $objectId;
61 return $this;
62 }
63
67 public function isLockedEditing(): bool
68 {
70 }
71
77 {
78 $this->lockedEditing = $lockedEditing;
79 return $this;
80 }
81}
__construct(int $objectId, bool $lockedEditing)
EmployeeTalk constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...