ILIAS  release_7 Revision v7.30-3-g800a261c036
PageUpdatedEvent.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 /* Copyright (c) 1998-2020 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
5 
7 
13 final class PageUpdatedEvent
14 {
16  private $page;
17 
23  {
24  $this->page = $page;
25  }
26 
30  public function page() : ilContentPagePage
31  {
32  return $this->page;
33  }
34 }
__construct(ilContentPagePage $page)
PageUpdatedEvent constructor.