Completed
Push — chroe/update-to-php-8-again ( 5e2c86...ef11db )
by Vladimir
07:25
created
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.