ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MetaBarModification.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 false;
38  }
39 
43  public function getClosureFirstArgumentType(): string
44  {
45  return UIMetaBar::class;
46  }
47 
51  public function getClosureReturnType(): string
52  {
53  return UIMetaBar::class;
54  }
55 
59  public function firstArgumentAllowsNull(): bool
60  {
61  return true;
62  }
63 
67  public function returnTypeAllowsNull(): bool
68  {
69  return true;
70  }
71 }