ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FooterModification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
30 {
34  #[\Override]
35  public function isFinal(): bool
36  {
37  return true;
38  }
39 
43  public function getClosureFirstArgumentType(): string
44  {
45  return Footer::class;
46  }
47 
51  public function getClosureReturnType(): string
52  {
53  return Footer::class;
54  }
55 
59  public function firstArgumentAllowsNull(): bool
60  {
61  return true;
62  }
63 
67  public function returnTypeAllowsNull(): bool
68  {
69  return false;
70  }
71 }