texdc/guard

assertion library with reusable guard function

v1.0.0 2017-10-17 05:39 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:45:42 UTC


README

An extension for beberlei/assert that adds some extra assertions and a factory function to simplify usage.

installation

composer require texdc/guard

usage

namespace my\lib;

use function texdc\guard\verify;

function storeRating(int $rating) : void {
    verify($rating)->numericRange(1, 10, 'rating should be from 1 - 10');
    // ...
}

function speak(string $message, ?int $times = null) : void {
    verify($message)->notEmpty('message is required')->length(256, 'message is too long');
    verify($times, 'invalid multiplier')->nullOr()->isModulus(8);
    // ...
}