Completed
Push — chroe/update-to-php-8-again ( 5e2c86 )
by Vladimir
05:26
created
src/Event/PageViewDefinitionAdded.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Event/PageViewAdded.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Event/CompilerPostRenderTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Event/CompilerPostRenderDynamicPageView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Event/CompilerPostRenderRepeaterPageView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Event/CompilerPostRenderStaticPageView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.