ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
StorePageMetricsCommand.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23final readonly class StorePageMetricsCommand
24{
25 public function __construct(private int $contentPageId, private string $language)
26 {
27 }
28
29 public function getContentPageId(): int
30 {
31 return $this->contentPageId;
32 }
33
34 public function getLanguage(): string
35 {
36 return $this->language;
37 }
38}
__construct(private int $contentPageId, private string $language)