ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PageBuilderModification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(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 }