Skip to content

Commit cd5a30f

Browse files
chore(deps): update dependency friendsofphp/php-cs-fixer to v3.47.1 (#1458)
* chore(deps): update dependency friendsofphp/php-cs-fixer to v3.47.1 * Apply php-cs-fixer changes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
1 parent 89b9784 commit cd5a30f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"amphp/http-server": "^2.1",
1919
"dms/phpunit-arraysubset-asserts": "dev-master",
2020
"ergebnis/composer-normalize": "^2.28",
21-
"friendsofphp/php-cs-fixer": "3.30.0",
21+
"friendsofphp/php-cs-fixer": "3.47.1",
2222
"mll-lab/php-cs-fixer-config": "^5",
2323
"nyholm/psr7": "^1.5",
2424
"phpbench/phpbench": "^1.2",

src/Error/Warning.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static function suppress($suppress = true): void
6262
self::$enableWarnings = 0;
6363
} elseif ($suppress === false) {
6464
self::$enableWarnings = self::ALL;
65-
// @phpstan-ignore-next-line necessary until we can use proper unions
65+
// @phpstan-ignore-next-line necessary until we can use proper unions
6666
} elseif (\is_int($suppress)) {
6767
self::$enableWarnings &= ~$suppress;
6868
} else {
@@ -88,7 +88,7 @@ public static function enable($enable = true): void
8888
self::$enableWarnings = self::ALL;
8989
} elseif ($enable === false) {
9090
self::$enableWarnings = 0;
91-
// @phpstan-ignore-next-line necessary until we can use proper unions
91+
// @phpstan-ignore-next-line necessary until we can use proper unions
9292
} elseif (\is_int($enable)) {
9393
self::$enableWarnings |= $enable;
9494
} else {

0 commit comments

Comments
 (0)