Skip to content

Commit 843e753

Browse files
authored
Vendor-Updates (#6352)
1 parent d8f62b4 commit 843e753

14 files changed

Lines changed: 120 additions & 116 deletions

File tree

.tools/phpstan/baseline/_loader.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
// total 465 errors
5+
// total 464 errors
66
return ['includes' => [
77
__DIR__ . '/argument.templateType.php',
88
__DIR__ . '/argument.type.php',
@@ -20,7 +20,6 @@
2020
__DIR__ . '/possiblyImpure.functionCall.php',
2121
__DIR__ . '/possiblyImpure.methodCall.php',
2222
__DIR__ . '/return.type.php',
23-
__DIR__ . '/staticClassAccess.privateMethod.php',
2423
__DIR__ . '/throws.unusedType.php',
2524
__DIR__ . '/varTag.nativeType.php',
2625
]];

.tools/phpstan/baseline/staticClassAccess.privateMethod.php

Lines changed: 0 additions & 14 deletions
This file was deleted.

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"phpunit/phpunit": "^10.5.48",
2222
"psalm/plugin-phpunit": "0.19.5",
2323
"psalm/plugin-symfony": "v5.2.7",
24-
"rector/rector": "2.1.4",
25-
"redaxo/php-cs-fixer-config": "2.16.0",
24+
"rector/rector": "2.1.5",
25+
"redaxo/php-cs-fixer-config": "2.17.0",
2626
"redaxo/psalm-plugin": "2.2.0",
2727
"shipmonk/phpstan-baseline-per-identifier": "2.1.6",
2828
"vimeo/psalm": "6.13.1"
@@ -43,17 +43,17 @@
4343
"ramsey/http-range": "1.2.1",
4444
"scssphp/scssphp": "v1.13.0",
4545
"splitbrain/php-archive": "1.4.1",
46-
"symfony/console": "v6.4.24",
46+
"symfony/console": "v6.4.25",
4747
"symfony/deprecation-contracts": "v3.6.0",
48-
"symfony/http-foundation": "v6.4.24",
48+
"symfony/http-foundation": "v6.4.25",
4949
"symfony/polyfill-ctype": "*",
5050
"symfony/polyfill-php80": "*",
5151
"symfony/polyfill-php81": "*",
5252
"symfony/polyfill-php83": "v1.33.0",
5353
"symfony/service-contracts": "v3.6.0",
54-
"symfony/string": "v6.4.24",
55-
"symfony/var-dumper": "v6.4.24",
56-
"symfony/yaml": "v6.4.24",
54+
"symfony/string": "v6.4.25",
55+
"symfony/var-dumper": "v6.4.25",
56+
"symfony/yaml": "v6.4.25",
5757
"voku/anti-xss": "4.1.42",
5858
"voku/portable-ascii": "2.0.3",
5959
"voku/portable-utf8": "dev-master"

rector.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@
4646
CodeQuality\Assign\CombinedAssignRector::class,
4747
CodeQuality\BooleanNot\SimplifyDeMorganBinaryRector::class,
4848
CodeQuality\Class_\InlineConstructorDefaultToPropertyRector::class,
49-
CodeQuality\Class_\StaticToSelfStaticMethodCallOnFinalClassRector::class,
50-
CodeQuality\ClassConstFetch\ConvertStaticPrivateConstantToSelfRector::class,
49+
CodeQuality\Class_\ConvertStaticToSelfRector::class,
5150
CodeQuality\Foreach_\SimplifyForeachToCoalescingRector::class,
5251
CodeQuality\FuncCall\SimplifyRegexPatternRector::class,
5352
CodeQuality\FuncCall\SingleInArrayToCompareRector::class,

redaxo/src/core/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"psr/http-message": "^1.1",
1212
"psr/log": "^3.0.2",
1313
"ramsey/http-range": "^1.2.1",
14-
"symfony/console": "^6.4.24",
15-
"symfony/http-foundation": "^6.4.24",
16-
"symfony/var-dumper": "^6.4.24",
17-
"symfony/yaml": "^6.4.24",
14+
"symfony/console": "^6.4.25",
15+
"symfony/http-foundation": "^6.4.25",
16+
"symfony/var-dumper": "^6.4.25",
17+
"symfony/yaml": "^6.4.25",
1818
"voku/anti-xss": "^4.1.42",
1919
"voku/portable-utf8": "dev-master as 6.0.14-dev"
2020
},

redaxo/src/core/composer.lock

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

redaxo/src/core/lib/sql/table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static function clearInstance($key)
186186
$key = [1, $key];
187187
}
188188

189-
static::baseClearInstance($key);
189+
self::baseClearInstance($key);
190190
}
191191

192192
/**

0 commit comments

Comments
 (0)