File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 26.1.0
2
+
3
+ ## Features
4
+
5
+ ### PHP 8.4 Compatibility
6
+
7
+ * Add PHP 8.4 support
8
+
1
9
# 26.0.0
2
10
3
11
## Features
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class ProductUrlRewriteObserver extends AbstractProductImportObserver
70
70
*/
71
71
public function __construct (
72
72
ProductUrlRewriteProcessorInterface $ productUrlRewriteProcessor ,
73
- StateDetectorInterface $ stateDetector = null
73
+ ? StateDetectorInterface $ stateDetector = null
74
74
) {
75
75
$ this ->productUrlRewriteProcessor = $ productUrlRewriteProcessor ;
76
76
parent ::__construct ($ stateDetector );
Original file line number Diff line number Diff line change @@ -112,11 +112,11 @@ class UrlRewriteObserver extends AbstractProductImportObserver implements Observ
112
112
* Initialize the observer with the passed product URL rewrite processor instance.
113
113
*
114
114
* @param \TechDivision\Import\Product\UrlRewrite\Services\ProductUrlRewriteProcessorInterface $productUrlRewriteProcessor The product URL rewrite processor instance
115
- * @param \TechDivision\Import\Observers\StateDetectorInterface $stateDetector The state detector instance
115
+ * @param \TechDivision\Import\Observers\StateDetectorInterface|null $stateDetector The state detector instance
116
116
*/
117
117
public function __construct (
118
118
ProductUrlRewriteProcessorInterface $ productUrlRewriteProcessor ,
119
- StateDetectorInterface $ stateDetector = null
119
+ ? StateDetectorInterface $ stateDetector = null
120
120
) {
121
121
$ this ->productUrlRewriteProcessor = $ productUrlRewriteProcessor ;
122
122
You can’t perform that action at this time.
0 commit comments