ILIAS  release_7 Revision v7.30-3-g800a261c036
AbstractInfoResolver.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2
4
10abstract class AbstractInfoResolver implements InfoResolver
11{
15 protected $revision_owner_id = 0;
19 protected $revision_title = '';
23 protected $next_version_number = 0;
24
32 {
33 $this->next_version_number = $next_version_number;
34 $this->revision_owner_id = $revision_owner_id;
35 $this->revision_title = $revision_title;
36 }
37
38 public function getNextVersionNumber() : int
39 {
41 }
42
43 public function getOwnerId() : int
44 {
46 }
47
48 public function getRevisionTitle() : string
49 {
51 }
52
53}
An exception for terminatinating execution or to throw for unit testing.
__construct(int $next_version_number, int $revision_owner_id, string $revision_title)
AbstractInfoResolver constructor.