Skip to content

Commit d35bf66

Browse files
authored
Use phpstan-deprecation-rules (#271)
1 parent bdfc548 commit d35bf66

13 files changed

+64
-15
lines changed

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"editorconfig-checker/editorconfig-checker": "^10.6.0",
1818
"ergebnis/composer-normalize": "^2.28",
1919
"nette/neon": "^3.3.1",
20+
"phpstan/phpstan-deprecation-rules": "^1.2",
2021
"phpstan/phpstan-phpunit": "^1.4.0",
2122
"phpstan/phpstan-strict-rules": "^1.6.0",
2223
"phpunit/phpunit": "^9.5.20",

composer.lock

+48-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan.neon.dist

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ includes:
44
- ./vendor/phpstan/phpstan-strict-rules/rules.neon
55
- ./vendor/phpstan/phpstan-phpunit/extension.neon
66
- ./vendor/phpstan/phpstan-phpunit/rules.neon
7+
- ./vendor/phpstan/phpstan-deprecation-rules/rules.neon
78
- ./vendor/shipmonk/dead-code-detector/rules.neon
89
- ./rules.neon
910

src/Rule/EnforceClosureParamNativeTypehintRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function processNode(
7474

7575
$errors[] = RuleErrorBuilder::message("Missing parameter typehint for {$type} parameter \${$param->var->name}.")
7676
->identifier('shipmonk.unknownClosureParamType')
77-
->line($param->getLine())
77+
->line($param->getStartLine())
7878
->build();
7979
}
8080

src/Rule/EnforceIteratorToArrayPreserveKeysRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function processNode(Node $node, Scope $scope): array
5252
}
5353

5454
return [RuleErrorBuilder::message('Calling iterator_to_array without 2nd parameter $preserve_keys. Default value true might cause failures or data loss.')
55-
->line($node->getLine())
55+
->line($node->getStartLine())
5656
->identifier('shipmonk.iteratorToArrayWithoutPreserveKeys')
5757
->build()];
5858
}

src/Rule/ForbidCheckedExceptionInCallableRule.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function processFirstClassCallable(
159159
}
160160

161161
$errors = [];
162-
$line = $callNode->getLine();
162+
$line = $callNode->getStartLine();
163163

164164
if ($callNode instanceof MethodCall && $callNode->name instanceof Identifier) {
165165
$callerType = $scope->getType($callNode->var);
@@ -208,7 +208,7 @@ public function processClosure(
208208
$errors[] = $this->buildError(
209209
$exceptionClass,
210210
'closure',
211-
$throwPoint->getNode()->getLine(),
211+
$throwPoint->getNode()->getStartLine(),
212212
$this->callablesInArguments[$nodeHash] ?? null,
213213
);
214214
}
@@ -257,7 +257,7 @@ static function (): void {
257257
$errors[] = $this->buildError(
258258
$exceptionClass,
259259
'arrow function',
260-
$throwPoint->getNode()->getLine(),
260+
$throwPoint->getNode()->getStartLine(),
261261
$this->callablesInArguments[$nodeHash] ?? null,
262262
);
263263
}

src/Rule/ForbidCheckedExceptionInYieldingMethodRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function processNode(
5151
foreach ($throwPoint->getType()->getObjectClassNames() as $exceptionClass) {
5252
if ($this->exceptionTypeResolver->isCheckedException($exceptionClass, $throwPoint->getScope())) {
5353
$errors[] = RuleErrorBuilder::message("Throwing checked exception $exceptionClass in yielding method is denied as it gets thrown upon Generator iteration")
54-
->line($throwPoint->getNode()->getLine())
54+
->line($throwPoint->getNode()->getStartLine())
5555
->identifier('shipmonk.checkedExceptionInYieldingMethod')
5656
->build();
5757
}

src/Rule/ForbidNotNormalizedTypeRule.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -530,15 +530,15 @@ private function processMultiTypePhpParserNode(
530530

531531
if ($typeA->isSuperTypeOf($typeB)->yes()) {
532532
$errors[] = RuleErrorBuilder::message("Found non-normalized type {$multiTypeNodeString} for {$identification}: {$typeNodeBString} is a subtype of {$typeNodeAString}.")
533-
->line($multiTypeNode->getLine())
533+
->line($multiTypeNode->getStartLine())
534534
->identifier('shipmonk.nonNormalizedType')
535535
->build();
536536
continue;
537537
}
538538

539539
if ($typeB->isSuperTypeOf($typeA)->yes()) {
540540
$errors[] = RuleErrorBuilder::message("Found non-normalized type {$multiTypeNodeString} for {$identification}: {$typeNodeAString} is a subtype of {$typeNodeBString}.")
541-
->line($multiTypeNode->getLine())
541+
->line($multiTypeNode->getStartLine())
542542
->identifier('shipmonk.nonNormalizedType')
543543
->build();
544544
}
@@ -645,7 +645,7 @@ private function getPhpDocLine(PhpParserNode $node, PhpDocRootNode $phpDocNode):
645645
$phpDoc = $node->getDocComment();
646646

647647
if ($phpDocTagLine === null || $phpDoc === null) {
648-
return $node->getLine();
648+
return $node->getStartLine();
649649
}
650650

651651
return $phpDoc->getStartLine() + $phpDocTagLine - 1;

src/Rule/ForbidProtectedEnumMethodRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function processNode(Node $node, Scope $scope): array
3838
&& !$classMethod->isDeclaredInTrait()
3939
) {
4040
$errors[] = RuleErrorBuilder::message('Protected methods within enum makes no sense as you cannot extend them anyway.')
41-
->line($classMethod->getLine())
41+
->line($classMethod->getStartLine())
4242
->identifier('shipmonk.protectedEnumMethod')
4343
->build();
4444
}

src/Rule/ForbidReturnValueInYieldingMethodRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function processNode(
7373
: 'function';
7474

7575
$errors[] = RuleErrorBuilder::message("Returned value from yielding $callType can be accessed only via Generator::getReturn, $suffix.")
76-
->line($returnNode->getLine())
76+
->line($returnNode->getStartLine())
7777
->identifier('shipmonk.returnValueFromYieldingMethod')
7878
->build();
7979
}

src/Rule/RequirePreviousExceptionPassRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ private function processExceptionCreation(
142142
if (!$passed && $accepts) {
143143
$exceptionName = $caughtExceptionVariableName === null ? "({$caughtExceptionType->describe(VerbosityLevel::typeOnly())})" : "\${$caughtExceptionVariableName}";
144144
$error = RuleErrorBuilder::message("Exception {$exceptionName} not passed as previous to {$this->printer->prettyPrintExpr($node)}")
145-
->line($node->getLine())
145+
->line($node->getStartLine())
146146
->identifier('shipmonk.missingPreviousException')
147147
->build();
148148
return [$error];

src/Rule/UselessPrivatePropertyDefaultValueRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function processNode(Node $node, Scope $scope): array
7070

7171
if (isset($noDefaultValueNeededProperties[$propertyName])) {
7272
$errors[] = RuleErrorBuilder::message("Property {$className}::{$propertyName} has useless default value (overwritten in constructor)")
73-
->line($property->getLine())
73+
->line($property->getStartLine())
7474
->identifier('shipmonk.uselessPrivatePropertyDefaultValue')
7575
->build();
7676
}

src/Rule/UselessPrivatePropertyNullabilityRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function processNode(Node $node, Scope $scope): array
9393

9494
if ($definitionHasTypehint && $definitionIsNullable && !$nullIsAssigned && !$hasNullDefaultValue && !$isUninitialized) {
9595
$errors[] = RuleErrorBuilder::message("Property {$className}::{$propertyName} is defined as nullable, but null is never assigned")
96-
->line($property->getLine())
96+
->line($property->getStartLine())
9797
->identifier('shipmonk.uselessPrivatePropertyNullability')
9898
->build();
9999
}

0 commit comments

Comments
 (0)