phpstan / phpstan-beberlei-assert
PHPStan beberlei/assert extension
Installs: 5 556 846
Dependents: 113
Suggesters: 2
Security: 0
Stars: 42
Watchers: 3
Forks: 12
Open Issues: 6
Type:phpstan-extension
Requires
- php: ^7.4 || ^8.0
- phpstan/phpstan: ^2.0
Requires (Dev)
- beberlei/assert: ^3.3.0
- php-parallel-lint/php-parallel-lint: ^1.4
- phpstan/phpstan-phpunit: ^2.0
- phpstan/phpstan-strict-rules: ^2.0
- phpunit/phpunit: ^9.6
README
Description
The main scope of this extension is to help PHPStan to detect the type of object after the Assert\Assertion
validation.
declare(strict_types = 1);
use Assert\Assertion;
function demo(?int $a) {
// ...
Assertion::integer($a);
// PHPStan is now aware that $a can no longer be `null` at this point
return ($a === 10);
}
Installation
To use this extension, require it in Composer:
composer require --dev phpstan/phpstan-beberlei-assert
If you also install phpstan/extension-installer then you're all set!
Manual installation
If you don't want to use phpstan/extension-installer
, include extension.neon in your project's PHPStan config:
includes:
- vendor/phpstan/phpstan-beberlei-assert/extension.neon