ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
PageUpdatedEvent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
30 final class PageUpdatedEvent
31 {
32  public function __construct(private readonly ilContentPagePage $page)
33  {
34  }
35 
36  public function page(): ilContentPagePage
37  {
38  return $this->page;
39  }
40 }
__construct(private readonly ilContentPagePage $page)