Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 810bd22

Browse files
committed
fix: disabled PHPStan PHPUnit ShouldCallParentMethodsRule
1 parent 0bf6577 commit 810bd22

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

base_rules.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ includes:
22
- %rootDir%/../../phpstan/phpstan-deprecation-rules/rules.neon
33
- %rootDir%/../../phpstan/phpstan-mockery/extension.neon
44
- %rootDir%/../../phpstan/phpstan-phpunit/extension.neon
5-
- %rootDir%/../../phpstan/phpstan-phpunit/rules.neon
5+
- src/Rules/PHPStan/PHPUnit/rules.neon
66
- %rootDir%/../../phpstan/phpstan-strict-rules/rules.neon
77
- %rootDir%/../../thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
88
- %rootDir%/../../slam/phpstan-extensions/conf/slam-rules.neon

src/Rules/PHPStan/PHPunit/rules.neon

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
services:
2+
- class: PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule
3+
tags:
4+
- phpstan.rules.rule
5+
- class: PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule
6+
tags:
7+
- phpstan.rules.rule
8+
- class: PHPStan\Rules\PHPUnit\AssertSameWithCountRule
9+
tags:
10+
- phpstan.rules.rule
11+
- class: PHPStan\Rules\PHPUnit\MockMethodCallRule
12+
tags:
13+
- phpstan.rules.rule

0 commit comments

Comments
 (0)