Skip to content

Commit dfd7999

Browse files
chore(deps-dev): bump squizlabs/php_codesniffer from 3.11.1 to 3.11.3 (#218)
* chore(deps-dev): bump squizlabs/php_codesniffer from 3.11.1 to 3.11.3 Bumps [squizlabs/php_codesniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) from 3.11.1 to 3.11.3. - [Release notes](https://github.com/PHPCSStandards/PHP_CodeSniffer/releases) - [Changelog](https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/CHANGELOG.md) - [Commits](PHPCSStandards/PHP_CodeSniffer@3.11.1...3.11.3) --- updated-dependencies: - dependency-name: squizlabs/php_codesniffer dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fix phpcs --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jay Shah <[email protected]>
1 parent 36532b7 commit dfd7999

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

composer.lock

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

test/Unit/Config/ApiContextTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function provideGetApiUrlCases(): iterable
9494

9595
yield [$apiContext, 'http://localhost:80/test/test/api/'];
9696

97-
$apiContext = (new ApiContext(self::HOST, self::TOKEN));
97+
$apiContext = new ApiContext(self::HOST, self::TOKEN);
9898

9999
yield [$apiContext, 'https://localhost:443/api/'];
100100

@@ -120,7 +120,7 @@ public function provideGetApiPathCases(): iterable
120120

121121
yield [$apiContext, '/test/test/api/'];
122122

123-
$apiContext = (new ApiContext(self::HOST, self::TOKEN));
123+
$apiContext = new ApiContext(self::HOST, self::TOKEN);
124124

125125
yield [$apiContext, '/api/'];
126126
}

0 commit comments

Comments
 (0)