sevavietl/type-guard

This package is abandoned and no longer maintained. The author suggests using the thorough-php/type-guard package instead.

PHP type validator

v1.0 2019-03-09 20:06 UTC

This package is not auto-updated.

Last update: 2022-02-01 13:14:41 UTC


README

Build Status Coverage Status License: MIT PHPStan

Features

TypeGuard can validate:

  • Scalar types: string, integer, etc.:
(new TypeGuard('string'))->match('foo'); // => true
  • Object types: ArrayAccess, stdClass, etc.:
(new TypeGuard('stdClass'))->match(new stdClass()); // => true
  • Union types: string|integer:
$guard = new TypeGuard('string|integer');
$guard->match('foo'); // => true
$guard->match(1); // => true
  • Intersection types: ArrayAccess&Countable:
(new TypeGuard('ArrayAccess&Countable'))->match(new ArrayIterator()); // => true
  • Optional types: ?string:
(new TypeGuard('?string'))->match(null); // => true