├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── rules.neon └── src └── voku └── PHPStan └── Rules ├── DisallowedCallMethodOnNullRule.php ├── ElseIfConditionBasicRule.php ├── ExtendedAssignOpRule.php ├── ExtendedBinaryOpRule.php ├── IfConditionBasicRule.php ├── IfConditionBooleanAndRule.php ├── IfConditionBooleanNotRule.php ├── IfConditionBooleanOrRule.php ├── IfConditionHelper.php ├── IfConditionMatchRule.php ├── IfConditionRule.php ├── IfConditionSwitchCaseRule.php ├── IfConditionTernaryOperatorRule.php └── WrongCastRule.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/composer.json -------------------------------------------------------------------------------- /rules.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/rules.neon -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/DisallowedCallMethodOnNullRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/DisallowedCallMethodOnNullRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/ElseIfConditionBasicRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/ElseIfConditionBasicRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/ExtendedAssignOpRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/ExtendedAssignOpRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/ExtendedBinaryOpRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/ExtendedBinaryOpRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionBasicRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionBasicRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionBooleanAndRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionBooleanAndRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionBooleanNotRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionBooleanNotRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionBooleanOrRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionBooleanOrRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionHelper.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionMatchRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionMatchRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionSwitchCaseRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionSwitchCaseRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/IfConditionTernaryOperatorRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/IfConditionTernaryOperatorRule.php -------------------------------------------------------------------------------- /src/voku/PHPStan/Rules/WrongCastRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voku/phpstan-rules/HEAD/src/voku/PHPStan/Rules/WrongCastRule.php --------------------------------------------------------------------------------