phpstan/phpstan-beberlei-assert

PHPStan beberlei/assert extension

Installs: 4 050 663

Dependents: 117

Suggesters: 2

Security: 0

Stars: 36

Watchers: 4

Forks: 14

Open Issues: 5

Type:phpstan-extension

1.1.2 2023-09-04 12:13 UTC

This package is auto-updated.

Last update: 2024-04-20 06:39:29 UTC


README

Build Latest Stable Version License

Description

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

<?php 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