Skip to content

Commit 915e273

Browse files
committed
MAGETWO-96314: Fix performance on MAGETWO-81469
1 parent 5994f8e commit 915e273

File tree

3 files changed

+5
-2
lines changed
  • app/code/Magento/Config/App/Config/Type
  • dev/tests/functional/tests/app/Magento/Install/Test/TestCase
  • lib/internal/Magento/Framework/Config

3 files changed

+5
-2
lines changed

app/code/Magento/Config/App/Config/Type/System.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*
2424
* @api
2525
* @since 100.1.2
26+
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2627
*/
2728
class System implements ConfigTypeInterface
2829
{
@@ -88,6 +89,7 @@ class System implements ConfigTypeInterface
8889
* @param Encryptor|null $encryptorFilter
8990
*
9091
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
92+
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
9193
*/
9294
public function __construct(
9395
ConfigSourceInterface $source,

dev/tests/functional/tests/app/Magento/Install/Test/TestCase/InstallTest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<variation name="InstallTestVariation2" firstConstraint="Magento\Install\Test\Constraint\AssertSuccessInstall" summary="Install with custom encryption key and changed currency and locale">
1818
<data name="user/dataset" xsi:type="string">default</data>
1919
<data name="install/keyOwn" xsi:type="string">I want to use my own encryption key</data>
20-
<data name="install/keyValue" xsi:type="string">123123qa</data>
20+
<data name="install/keyValue" xsi:type="string">I_want_to_use_my_own_encryption_key</data>
2121
<data name="install/storeLanguage" xsi:type="string">German (Germany)</data>
2222
<data name="install/storeCurrency" xsi:type="string">Euro (EUR)</data>
2323
<data name="currencySymbol" xsi:type="string">€</data>

lib/internal/Magento/Framework/Config/View.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,8 @@ protected function initData()
226226
}
227227

228228
/**
229-
* {@inheritdoc}
229+
* @inheritdoc
230+
*
230231
* @throws \InvalidArgumentException
231232
* @since 100.1.0
232233
*/

0 commit comments

Comments
 (0)