Skip to content

Commit 056adcd

Browse files
Bump phpstan/phpstan from 2.1.12 to 2.1.13 (#4784)
* Bump phpstan/phpstan from 2.1.12 to 2.1.13 Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 2.1.12 to 2.1.13. - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/2.1.x/CHANGELOG.md) - [Commits](phpstan/phpstan@2.1.12...2.1.13) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-version: 2.1.13 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update EnvironmentConfigLoaderTest.php (#4788) see phpstan/phpstan-src@b9eb832 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sven Reichel <github-sr@hotmail.com>
1 parent 394662b commit 056adcd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/unit/Mage/Core/Helper/EnvironmentConfigLoaderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ public function testEnvOverridesForValidConfigKeys(array $config): void
9494
$xml = new Varien_Simplexml_Config();
9595
$xml->loadString($xmlStruct);
9696

97-
// phpcs:ignore Ecg.Classes.ObjectInstantiation.DirectInstantiation
9897
$loader = new Mage_Core_Helper_EnvironmentConfigLoader();
98+
/** @phpstan-ignore method.internal */
9999
$loader->setEnvStore([
100100
$config['env_path'] => $config['value'],
101101
]);
@@ -201,8 +201,8 @@ public function testEnvDoesNotOverrideForInvalidConfigKeys(array $config): void
201201
$defaultStoreValue = 'test_store';
202202
$this->assertSame($defaultStoreValue, (string) $xml->getNode(self::XML_PATH_STORE));
203203

204-
// phpcs:ignore Ecg.Classes.ObjectInstantiation.DirectInstantiation
205204
$loader = new Mage_Core_Helper_EnvironmentConfigLoader();
205+
/** @phpstan-ignore method.internal */
206206
$loader->setEnvStore([
207207
$config['path'] => $config['value'],
208208
]);

0 commit comments

Comments
 (0)