ILIAS  trunk Revision v11.0_alpha-2645-g16283d3b3f8
PageUpdatedEvent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
25 final readonly class PageUpdatedEvent
26 {
27  public function __construct(private ilContentPagePage $page)
28  {
29  }
30 
31  public function page(): ilContentPagePage
32  {
33  return $this->page;
34  }
35 }