ajout check_null

This commit is contained in:
Jephté Clain 2024-11-15 15:56:38 +04:00
parent 7742c2d330
commit 1dca3e8bee
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@ class ValueException extends UserException {
return new static(self::message(null, $message, $kind, $prefix, " should not be null"));
}
static final function check_null($value, ?string $kind=null, ?string $prefix=null, ?string $message=null): void {
if ($value === null) throw static::null($kind, $prefix, $message);
}
static final function invalid_kind($value=null, ?string $kind=null, ?string $prefix=null, ?string $message=null): self {
return new static(self::message($value, $message, $kind, $prefix, " is invalid"));
}