Skip to content

Commit 99758fe

Browse files
Hanmacsreichel
andauthored
[Rector] RemoveParentDelegatingConstructorRector (#5197)
* [Rector] RemoveParentDelegatingConstructorRector * Add composer output condition to workflows --------- Co-authored-by: Sven Reichel <[email protected]>
1 parent 34d78ec commit 99758fe

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ jobs:
126126
needs: [check, php-cs-fixer, phpstan]
127127
if: |
128128
needs.check.outputs.php > 0 ||
129+
needs.check.outputs.composer > 0 ||
129130
needs.check.outputs.workflow > 0
130131
uses: ./.github/workflows/rector.yml
131132

@@ -136,6 +137,7 @@ jobs:
136137
needs.check.outputs.php > 0 ||
137138
needs.check.outputs.phpunit-test > 0 ||
138139
needs.check.outputs.phpunit > 0 ||
140+
needs.check.outputs.composer > 0 ||
139141
needs.check.outputs.workflow > 0
140142
uses: ./.github/workflows/phpunit.yml
141143

lib/Varien/Data/Form/Abstract.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,6 @@ class Varien_Data_Form_Abstract extends Varien_Object
3939
*/
4040
protected $_types = [];
4141

42-
/**
43-
* @param array $attributes
44-
*/
45-
public function __construct($attributes = [])
46-
{
47-
parent::__construct($attributes);
48-
}
49-
5042
/**
5143
* @param string $type
5244
* @param string $className

0 commit comments

Comments
 (0)