ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ContentModification.php
Go to the documentation of this file.
1<?php
2
19declare(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 Content::class;
46 }
47
51 public function getClosureReturnType(): string
52 {
53 return Content::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}