Phpstan Webmozart Assert Save

PHPStan extension for webmozart/assert

Project README

PHPStan webmozart/assert extension

Build Latest Stable Version License

Description

The main scope of this extension is to help PHPStan to detect the type of object after the Webmozart\Assert\Assert validation.

<?php declare(strict_types = 1);

use Webmozart\Assert\Assert;

function demo(?int $a) {
	// ...

	Assert::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-webmozart-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-webmozart-assert/extension.neon
Open Source Agenda is not affiliated with "Phpstan Webmozart Assert" Project. README Source: phpstan/phpstan-webmozart-assert
Stars
155
Open Issues
6
Last Commit
4 weeks ago

Open Source Agenda Badge

Open Source Agenda Rating