--CREDITS-- William Espindola --FILE-- v::currencyCode()->check('batman')); exceptionMessage(static fn() => v::not(v::currencyCode())->check('BRL')); exceptionFullMessage(static fn() => v::currencyCode()->assert('ppz')); exceptionFullMessage(static fn() => v::not(v::currencyCode())->assert('GBP')); ?> --EXPECT-- "batman" must be a valid currency "BRL" must not be a valid currency - "ppz" must be a valid currency - "GBP" must not be a valid currency