Skip to content

Commit 0967043

Browse files
author
Sven Reichel
authoredMar 13, 2025
rector: apply some php-73/php-80 rules (#4682)
* rector: apply php8 string rules - `StrEndsWithRector` - `StrStartsWithRector` - `StrContainsRector` * PhpStan fixes
1 parent 65e7124 commit 0967043

File tree

84 files changed

+139
-159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+139
-159
lines changed
 

‎.phpstan.dist.baseline.neon

-6
Original file line numberDiff line numberDiff line change
@@ -3888,12 +3888,6 @@ parameters:
38883888
count: 2
38893889
path: app/code/core/Mage/Directory/Model/Observer.php
38903890

3891-
-
3892-
message: '#^Left side of && is always true\.$#'
3893-
identifier: booleanAnd.leftAlwaysTrue
3894-
count: 1
3895-
path: app/code/core/Mage/Downloadable/Block/Catalog/Product/Links.php
3896-
38973891
-
38983892
message: '#^Cannot call method streamRead\(\) on resource\.$#'
38993893
identifier: method.nonObject

‎.rector.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616

1717
try {
1818
return RectorConfig::configure()
19+
->withPhpSets(
20+
php55: true,
21+
)
1922
->withPaths([
2023
__DIR__,
2124
])
@@ -32,9 +35,6 @@
3235
Php80\Class_\ClassPropertyAssignToConstructorPromotionRector::class,
3336
Php80\Class_\StringableForToStringRector::class,
3437
Php80\FunctionLike\MixedTypeRector::class,
35-
Php80\Identical\StrEndsWithRector::class,
36-
Php80\Identical\StrStartsWithRector::class,
37-
Php80\NotIdentical\StrContainsRector::class,
3838
TypeDeclaration\ClassMethod\ReturnNeverTypeRector::class,
3939
__DIR__ . '/shell/translations.php',
4040
__DIR__ . '/shell/update-copyright.php',

0 commit comments

Comments
 (0)