#169·assert

Support for Lazy assertions / assertions chains

Author: TaluuCreated Feb 5, 2020Updated Oct 21, 2025

As the assert from beberlei's package propose them, so we can build assertions :

php
<?php

$assert = Assert::that($value);
$assert->not();
$assert->same('foo');

This is the global idea.