ILIAS  release_8 Revision v8.24
StorePageMetricsCommand.php
Go to the documentation of this file.
1<?php
2
19declare(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 {
42 }
43
44 public function getLanguage(): string
45 {
46 return $this->language;
47 }
48}