-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpstan.neon
52 lines (46 loc) · 2.45 KB
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
parameters:
bootstrap: %rootDir%/../../../vendor/autoload.php
includes:
- vendor/phpstan/phpstan-beberlei-assert/extension.neon
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
rules:
- Sourceability\PHPStan\Rules\ConstantBooleanIdenticalRule
- Sourceability\PHPStan\Rules\ConstantBooleanNotIdenticalRule
- Sourceability\PHPStan\Rules\InstanceOfVsNotNullRule
# vendor/phpstan/phpstan-strict-rules/rules.neon
- PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule
- PHPStan\Rules\BooleansInConditions\BooleanInBooleanNotRule
- PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule
- PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule
- PHPStan\Rules\BooleansInConditions\BooleanInIfConditionRule
- PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule
- PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule
- PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule
- PHPStan\Rules\Methods\WrongCaseOfInheritedMethodRule
- PHPStan\Rules\Operators\OperandInArithmeticPostDecrementRule
- PHPStan\Rules\Operators\OperandInArithmeticPostIncrementRule
- PHPStan\Rules\Operators\OperandInArithmeticPreDecrementRule
- PHPStan\Rules\Operators\OperandInArithmeticPreIncrementRule
- PHPStan\Rules\Operators\OperandsInArithmeticAdditionRule
- PHPStan\Rules\Operators\OperandsInArithmeticDivisionRule
- PHPStan\Rules\Operators\OperandsInArithmeticExponentiationRule
- PHPStan\Rules\Operators\OperandsInArithmeticModuloRule
- PHPStan\Rules\Operators\OperandsInArithmeticMultiplicationRule
- PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule
- PHPStan\Rules\Properties\MissingPropertyTypehintRule
- PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule
- PHPStan\Rules\StrictCalls\StrictFunctionCallsRule
- PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule
services:
- class: Sourceability\PHPStan\Rules\ConstantBooleanRuleHelper
- class: PHPStan\Rules\BooleansInConditions\BooleanRuleHelper
- class: PHPStan\Rules\Operators\OperatorRuleHelper
# vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
-
class: TheCodingMachine\PHPStan\Rules\Exceptions\ThrowMustBundlePreviousExceptionRule
tags:
- phpstan.rules.rule
-
class: TheCodingMachine\PHPStan\Rules\Superglobals\NoSuperglobalsRule
tags:
- phpstan.rules.rule