texdc/guard

assertion library with reusable guard function

Maintainers

Details

github.com/texdc/guard

Source

Issues

Installs: 345

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/texdc/guard

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

This package is not auto-updated.

Last update: 2025-09-28 10:16:22 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);
    // ...
}