ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
PageBuilderModification.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
31{
35 public function firstArgumentAllowsNull(): bool
36 {
37 return false;
38 }
39
43 public function returnTypeAllowsNull(): bool
44 {
45 return false;
46 }
47
51 #[\Override]
52 public function isFinal(): bool
53 {
54 return true;
55 }
56
60 public function getClosureFirstArgumentType(): string
61 {
62 return PagePartProvider::class;
63 }
64
68 public function getClosureReturnType(): string
69 {
70 return Page::class;
71 }
72}
This describes the Page.
Definition: Page.php:31