We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5311e commit e362a93Copy full SHA for e362a93
lib/internal/Magento/Framework/Filter/Template/Tokenizer/Parameter.php
@@ -25,7 +25,7 @@ public function tokenize()
25
}
26
27
if ($this->char() !== '=') {
28
- $parameterName .= $this->char() ?? strtolower($this->char());
+ $parameterName .= $this->char() !== null ? strtolower($this->char()) : $this->char();
29
} else {
30
$parameters[$parameterName] = $this->getValue();
31
$parameterName = '';
0 commit comments