File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -122,4 +122,17 @@ public function updatePropertyList()
122
122
$ pipeline ->updatePropertyDatabaseForFlowElement ($ this );
123
123
}
124
124
}
125
+
126
+ /**
127
+ * A default dummy constructor is needed for there are classes inheriting this
128
+ * class deeper than 1-level of inheritance and calling parent::__construct() in their
129
+ * explicit constructors unfortunately intermediates do not define their own __construct()
130
+ * so the call propagates up to the base class FlowElement and fails.
131
+ * Intermediates might define their own __construct() at some point, so we do not want
132
+ * remove parent::__construct() calls, rather add this one as a catch all.
133
+ *
134
+ * */
135
+ public function __construct () {
136
+
137
+ }
125
138
}
You can’t perform that action at this time.
0 commit comments