ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
AbstractInfoResolver.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 abstract class AbstractInfoResolver implements InfoResolver
29 {
30  protected int $next_version_number;
31  protected int $revision_owner_id;
32  protected string $revision_title;
33 
37  public function __construct(int $next_version_number, int $revision_owner_id, string $revision_title)
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  {
56  return $this->revision_title;
57  }
58 }
__construct(int $next_version_number, int $revision_owner_id, string $revision_title)
AbstractInfoResolver constructor.