Skip to content

Commit fa33cda

Browse files
committed
Don't use void return value from parent. Fixes error phpstan found while scanning on level 0.
1 parent 1a52ef4 commit fa33cda

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/PageBuilder/Controller/Adminhtml/Stage

1 file changed

+2
-1
lines changed

app/code/Magento/PageBuilder/Controller/Adminhtml/Stage/Render.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public function __construct(
3636
PageFactory $pageFactory
3737
) {
3838
$this->pageFactory = $pageFactory;
39-
return parent::__construct($context);
39+
40+
parent::__construct($context);
4041
}
4142

4243
/**

0 commit comments

Comments
 (0)