There was an error while loading. Please reload this page.
1 parent 3cd646a commit 318568bCopy full SHA for 318568b
1 file changed
Classes/Domain/Model/Cart/Service.php
@@ -71,17 +71,17 @@ public function getCart(): Cart
71
72
public function getStatus(): string
73
{
74
- return $this->config['status'] ?: 'open';
+ return $this->config['status'] ?? 'open';
75
}
76
77
public function getProcessOrderCreateEvent(): string
78
79
- return $this->config['processOrderCreateEvent'] ?: '';
+ return $this->config['processOrderCreateEvent'] ?? '';
80
81
82
public function getProvider(): string
83
84
- return $this->config['provider'] ?: '';
+ return $this->config['provider'] ?? '';
85
86
87
public function getName(): string
0 commit comments