ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
AbstractInfoResolver.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
28abstract class AbstractInfoResolver implements InfoResolver
29{
33 public function __construct(protected int $next_version_number, protected int $revision_owner_id, protected string $revision_title)
34 {
35 }
36
37 public function getNextVersionNumber(): int
38 {
39 return $this->next_version_number;
40 }
41
42 public function getOwnerId(): int
43 {
44 return $this->revision_owner_id;
45 }
46
47 public function getRevisionTitle(): string
48 {
49 return $this->revision_title;
50 }
51}
__construct(protected int $next_version_number, protected int $revision_owner_id, protected string $revision_title)
AbstractInfoResolver constructor.