ILIAS  release_8 Revision v8.24
AbstractInfoResolver.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
28abstract class AbstractInfoResolver implements InfoResolver
29{
30 protected int $next_version_number;
31 protected int $revision_owner_id;
32 protected string $revision_title;
33
38 {
39 $this->next_version_number = $next_version_number;
40 $this->revision_owner_id = $revision_owner_id;
41 $this->revision_title = $revision_title;
42 }
43
44 public function getNextVersionNumber(): int
45 {
47 }
48
49 public function getOwnerId(): int
50 {
52 }
53
54 public function getRevisionTitle(): string
55 {
57 }
58}
__construct(int $next_version_number, int $revision_owner_id, string $revision_title)
AbstractInfoResolver constructor.