Skip to content

Commit 62b3a28

Browse files
committed
Fixed opening & closoing parenthesis coding violation
1 parent bfef638 commit 62b3a28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/Magento/Framework/Validator/Factory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ protected function _initializeConfigList()
7878
$this->_configFiles = $this->cache->load(self::CACHE_KEY);
7979
if (!$this->_configFiles) {
8080
$this->_configFiles = $this->moduleReader->getConfigurationFiles('validation.xml');
81-
$this->cache->save($this->getSerializer()->serialize(
82-
$this->_configFiles->toArray()),
81+
$this->cache->save(
82+
$this->getSerializer()->serialize($this->_configFiles->toArray()),
8383
self::CACHE_KEY
8484
);
8585
} else {

0 commit comments

Comments
 (0)