@@ -26,7 +26,7 @@ |
||
| 26 | 26 | $this->folder = $folder; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - public function getFolder(): string|Folder |
|
| 29 | + public function getFolder(): string | Folder |
|
| 30 | 30 | { |
| 31 | 31 | return $this->folder; |
| 32 | 32 | } |
@@ -23,14 +23,14 @@ |
||
| 23 | 23 | { |
| 24 | 24 | public const NAME = 'pageview.item.added'; |
| 25 | 25 | |
| 26 | - private DynamicPageView|RepeaterPageView|StaticPageView $pageView; |
|
| 26 | + private DynamicPageView | RepeaterPageView | StaticPageView $pageView; |
|
| 27 | 27 | |
| 28 | - public function __construct(DynamicPageView|RepeaterPageView|StaticPageView $pageView) |
|
| 28 | + public function __construct(DynamicPageView | RepeaterPageView | StaticPageView $pageView) |
|
| 29 | 29 | { |
| 30 | 30 | $this->pageView = &$pageView; |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function getPageView(): DynamicPageView|RepeaterPageView|StaticPageView |
|
| 33 | + public function getPageView(): DynamicPageView | RepeaterPageView | StaticPageView |
|
| 34 | 34 | { |
| 35 | 35 | return $this->pageView; |
| 36 | 36 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | trait CompilerPostRenderTrait |
| 13 | 13 | { |
| 14 | - protected string|Stringable $compiledOutput; |
|
| 14 | + protected string | Stringable $compiledOutput; |
|
| 15 | 15 | |
| 16 | 16 | public function getCompiledOutput(): string |
| 17 | 17 | { |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | /** |
| 22 | 22 | * Modify the compiled output. |
| 23 | 23 | */ |
| 24 | - public function setCompiledOutput(string|Stringable $compiledOutput): void |
|
| 24 | + public function setCompiledOutput(string | Stringable $compiledOutput): void |
|
| 25 | 25 | { |
| 26 | 26 | $this->compiledOutput = $compiledOutput; |
| 27 | 27 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | |
| 25 | 25 | private CollectableItem $collectableItem; |
| 26 | 26 | |
| 27 | - public function __construct(CollectableItem $collectableItem, string|\Stringable $compiledOutput) |
|
| 27 | + public function __construct(CollectableItem $collectableItem, string | \Stringable $compiledOutput) |
|
| 28 | 28 | { |
| 29 | 29 | $this->collectableItem = $collectableItem; |
| 30 | 30 | $this->compiledOutput = $compiledOutput; |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | private RepeaterPageView $pageView; |
| 27 | 27 | private ExpandedValue $expandedValue; |
| 28 | 28 | |
| 29 | - public function __construct(RepeaterPageView $pageView, ExpandedValue $expandedValue, string|\Stringable $compiledOutput) |
|
| 29 | + public function __construct(RepeaterPageView $pageView, ExpandedValue $expandedValue, string | \Stringable $compiledOutput) |
|
| 30 | 30 | { |
| 31 | 31 | $this->pageView = $pageView; |
| 32 | 32 | $this->expandedValue = $expandedValue; |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | |
| 25 | 25 | private StaticPageView $pageView; |
| 26 | 26 | |
| 27 | - public function __construct(StaticPageView $pageView, string|\Stringable $compiledOutput) |
|
| 27 | + public function __construct(StaticPageView $pageView, string | \Stringable $compiledOutput) |
|
| 28 | 28 | { |
| 29 | 29 | $this->pageView = $pageView; |
| 30 | 30 | $this->compiledOutput = $compiledOutput; |