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 2453f02 commit 600b74dCopy full SHA for 600b74d
dev/tests/integration/testsuite/Magento/Framework/View/Element/AbstractBlockTest.php
@@ -26,6 +26,9 @@ class AbstractBlockTest extends \PHPUnit\Framework\TestCase
26
*/
27
protected $_layout = null;
28
29
+ /**
30
+ * @var array
31
+ */
32
protected static $_mocks = [];
33
34
/**
lib/internal/Magento/Framework/Filter/Template.php
@@ -515,7 +515,7 @@ protected function getParameters($value)
515
$params = $tokenizer->tokenize();
516
foreach ($params as $key => $value) {
517
$validKey = strtolower($key);
518
- if(strcmp($key,$validKey)) {
+ if (strcmp($key, $validKey)) {
519
$params[$validKey] = $value;
520
unset($params[$key]);
521
}
0 commit comments