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