Skip to content

Commit d68f6cb

Browse files
authored
Register rules as PHPStan extension (#51)
* Register rules as PHPStan extension * spaze/phpstan-disallowed-calls * fix stuff * fix CI * require spaze/phpstan-disallowed-calls * v5.14.0 * Deprecate NoAssignmentInIfRule * fix rector
1 parent 104e8d3 commit d68f6cb

11 files changed

+43
-8
lines changed

.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
php-version: "${{ matrix.php-version }}"
8383

8484
- if: "! startsWith(matrix.php-version, 8)"
85-
run: composer remove --dev --no-update rector/rector mll-lab/graphql-php-scalars
85+
run: composer remove --dev --no-update rector/rector mll-lab/graphql-php-scalars spaze/phpstan-disallowed-calls
8686

8787
- uses: ramsey/composer-install@v3
8888
with:

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ See [GitHub releases](https://github.com/mll-lab/php-utils/releases).
99

1010
## Unreleased
1111

12+
## v5.14.0
13+
14+
### Added
15+
16+
- Register rules as a PHPStan extension
17+
18+
### Deprecated
19+
20+
- Deprecate `NoAssignmentInIfRule`
21+
1222
## v5.13.0
1323

1424
### Added

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,12 @@ or registered manually by adding the following to your `phpstan.neon`:
4747

4848
```diff
4949
includes:
50-
+- vendor/mll-lab/php-utils/phpstan-extension.neon
50+
+- vendor/mll-lab/php-utils/extension.neon
51+
+- vendor/mll-lab/php-utils/rules.neon
5152
```
5253

54+
Requires `spaze/phpstan-disallowed-calls`.
55+
5356
## Changelog
5457

5558
See [`CHANGELOG.md`](CHANGELOG.md).

composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,12 @@
3737
"phpstan/phpstan-strict-rules": "^1 || ^2.0.3",
3838
"phpunit/phpunit": "^9.6.22 || ^10.5.45 || ^11.5.10 || ^12.0.5",
3939
"rector/rector": "^1.2.10 || ^2.0.9",
40+
"spaze/phpstan-disallowed-calls": "^4.4",
4041
"thecodingmachine/phpstan-safe-rule": "^1.2.0"
4142
},
4243
"suggest": {
43-
"mll-lab/graphql-php-scalars": "To use the provided scalar types for GraphQL servers, requires version ^6.3"
44+
"mll-lab/graphql-php-scalars": "To use the provided scalar types for GraphQL servers, requires version ^6.3",
45+
"spaze/phpstan-disallowed-calls": "Required when using the PHPStan configuration from rules.neon directly or through the extension installer"
4446
},
4547
"autoload": {
4648
"psr-4": {
@@ -64,7 +66,8 @@
6466
"extra": {
6567
"phpstan": {
6668
"includes": [
67-
"phpstan-extension.neon"
69+
"extension.neon",
70+
"rules.neon"
6871
]
6972
}
7073
}
File renamed without changes.

phpstan.neon

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
includes:
2-
- phpstan-extension.neon
2+
- extension.neon
3+
- rules.neon
34
parameters:
45
level: max
56
paths:

rector.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,8 @@
3535
// Rector uses PHPStan internally, which in turn requires Larastan to be set up correctly
3636
__DIR__ . '/vendor/larastan/larastan/bootstrap.php',
3737
])
38-
->withPHPStanConfigs([__DIR__ . '/phpstan.neon']);
38+
->withPHPStanConfigs([
39+
__DIR__ . '/phpstan.neon',
40+
__DIR__ . '/vendor/larastan/larastan/extension.neon',
41+
__DIR__ . '/vendor/spaze/phpstan-disallowed-calls/extension.neon',
42+
]);

rules.neon

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
rules:
2+
# TODO gradually enable those rules
3+
#- MLL\Utils\PHPStan\Rules\ThrowableClassNameRule
4+
#- MLL\Utils\PHPStan\Rules\VariableNameIdToIDRule
5+
parameters:
6+
disallowedFunctionCalls:
7+
- function: 'compact()'
8+
message: 'makes refactoring code hard'
9+
errorTip: 'use standard array syntax instead'
10+
# https://github.com/itsgoingd/clockwork?tab=readme-ov-file#logging
11+
- function: 'clock()'
12+
message: 'remove debugging code'

src/Microplate/SectionedMicroplate.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function removeSection(AbstractSection $section): void
4444
{
4545
foreach ($this->sections as $i => $s) {
4646
if ($s === $section) {
47-
unset($this->sections[$i]);
47+
unset($this->sections[$i]); // @phpstan-ignore unset.possiblyHookedProperty (we allow extension and can not disable all footguns)
4848
}
4949
}
5050
}

src/PHPStan/Rules/NoAssignmentInIfRule.php

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* Inspired by https://github.com/odan/phpstan-rules/blob/388db4cdf7c99e2978f20b1ed8801d748984812a/src/Rules/AssignmentInConditionRule.php.
1515
*
1616
* @implements Rule<If_>
17+
*
18+
* @deprecated we decided we do not want to enforce this rule
1719
*/
1820
class NoAssignmentInIfRule implements Rule
1921
{

src/PHPStan/Rules/VariableNameIdToIDRule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class VariableNameIdToIDRule implements Rule
1414
{
1515
/** Lists words or phrases that contain "Id" but are fine. */
16-
protected const FALSE_POSITIVES = ['Identifier'];
16+
protected const FALSE_POSITIVES = ['Identifier', 'Identity'];
1717

1818
public function getNodeType(): string
1919
{

0 commit comments

Comments
 (0)