Skip to content

Commit

Permalink
Merge pull request #1016 from lcobucci/renovate/lcobucci-coding-stand…
Browse files Browse the repository at this point in the history
…ard-11.x

Update dependency lcobucci/coding-standard to v11
  • Loading branch information
lcobucci authored Jul 30, 2023
2 parents ba27e44 + 7ff436c commit 39bff2a
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 50 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"require-dev": {
"infection/infection": "^0.26.19",
"lcobucci/clock": "^3.0",
"lcobucci/coding-standard": "^9.0",
"lcobucci/coding-standard": "^11.0",
"phpbench/phpbench": "^1.2.9",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10.7",
Expand Down
94 changes: 49 additions & 45 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Signer/Ecdsa.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ final public function verify(string $expected, string $payload, Key $key): bool
);
}

/** {@inheritdoc} */
/** {@inheritDoc} */
final protected function guardAgainstIncompatibleKey(int $type, int $lengthInBits): void
{
if ($type !== OPENSSL_KEYTYPE_EC) {
Expand Down
2 changes: 1 addition & 1 deletion tests/Signer/Ecdsa/Sha256Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected function signingKey(): Key
return self::$ecdsaKeys['private'];
}

/** {@inheritdoc} */
/** {@inheritDoc} */
public static function incompatibleKeys(): iterable
{
yield '384 bits' => ['private_ec384', 384];
Expand Down
2 changes: 1 addition & 1 deletion tests/Signer/Ecdsa/Sha384Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected function signingKey(): Key
return self::$ecdsaKeys['private_ec384'];
}

/** {@inheritdoc} */
/** {@inheritDoc} */
public static function incompatibleKeys(): iterable
{
yield '256 bits' => ['private', 256];
Expand Down
2 changes: 1 addition & 1 deletion tests/Signer/Ecdsa/Sha512Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected function signingKey(): Key
return self::$ecdsaKeys['private_ec512'];
}

/** {@inheritdoc} */
/** {@inheritDoc} */
public static function incompatibleKeys(): iterable
{
yield '256 bits' => ['private', 256];
Expand Down

0 comments on commit 39bff2a

Please sign in to comment.