2017 © Pedro Peláez
 

library phpstan-beberlei-assert

PHPStan beberlei/assert extension

image

phpstan/phpstan-beberlei-assert

PHPStan beberlei/assert extension

  • Saturday, June 23, 2018
  • by ondrejmirtes
  • Repository
  • 3 Watchers
  • 8 Stars
  • 1,162 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 301 % Grown

The README.md

PHPStan beberlei/assert extension

Build Latest Stable Version License, (*1)

Description

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

<?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:, (*3)

composer require --dev phpstan/phpstan-beberlei-assert

If you also install phpstan/extension-installer then you're all set!, (*4)

Manual installation
, (*5)

If you don't want to use phpstan/extension-installer, include extension.neon in your project's PHPStan config:, (*6)

includes:
    - vendor/phpstan/phpstan-beberlei-assert/extension.neon

, (*7)

The Versions