ILIAS  release_7 Revision v7.30-3-g800a261c036
PageBuilderModification.php
Go to the documentation of this file.
1<?php
2
19declare(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}
An exception for terminatinating execution or to throw for unit testing.
This describes the Page.
Definition: Page.php:14