ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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 {
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.