ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
StorePageMetricsCommand.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
30  private int $contentPageId;
31  private string $language;
32 
33  public function __construct(int $contentPageId, string $language)
34  {
36  $this->language = $language;
37  }
38 
39  public function getContentPageId(): int
40  {
41  return $this->contentPageId;
42  }
43 
44  public function getLanguage(): string
45  {
46  return $this->language;
47  }
48 }