ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilStudyProgrammeAutoCategory.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types = 1);
4
11{
15 protected $prg_obj_id;
16
21
25 protected $title;
26
31
35 protected $last_edited;
36
37 public function __construct(
38 int $prg_obj_id,
41 \DateTimeImmutable $last_edited
42 ) {
43 $this->prg_obj_id = $prg_obj_id;
44 $this->category_ref_id = $category_ref_id;
45 $this->last_edited_usr_id = $last_edited_usr_id;
46 $this->last_edited = $last_edited;
47 }
48
49 public function getPrgObjId() : int
50 {
51 return $this->prg_obj_id;
52 }
53
54 public function getCategoryRefId() : int
55 {
57 }
58
59 public function getLastEditorId() : int
60 {
62 }
63
64 public function getLastEdited() : \DateTimeImmutable
65 {
66 return $this->last_edited;
67 }
68}
An exception for terminatinating execution or to throw for unit testing.
Class ilStudyProgrammeAutoCategory.
__construct(int $prg_obj_id, int $category_ref_id, int $last_edited_usr_id, \DateTimeImmutable $last_edited)