ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
PageBuilderModification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
21 
24 
30 {
34  public function firstArgumentAllowsNull() : bool
35  {
36  return false;
37  }
38 
42  public function returnTypeAllowsNull() : bool
43  {
44  return false;
45  }
46 
50  public function isFinal() : bool
51  {
52  return true;
53  }
54 
58  public function getClosureFirstArgumentType() : string
59  {
60  return PagePartProvider::class;
61  }
62 
66  public function getClosureReturnType() : string
67  {
68  return Page::class;
69  }
70 }