ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilObjBookingServiceSettings.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12{
17 protected $obj_id;
18
22 protected $book_obj_ids;
23
29 public function __construct(int $obj_id, array $book_obj_ids)
30 {
31 $this->obj_id = $obj_id;
32 $this->book_obj_ids = $book_obj_ids;
33 }
34
40 public function getObjectId() : int
41 {
42 return $this->obj_id;
43 }
44
50 public function getUsedBookingObjectIds() : array
51 {
53 }
54}
An exception for terminatinating execution or to throw for unit testing.
Value object for booking service settings of a repository object.
__construct(int $obj_id, array $book_obj_ids)
Constructor.
getObjectId()
Get object id of repo object.
getUsedBookingObjectIds()
Get used booking object ids.