How to make optional rule for some field?
Example pseudo rules:
"name" "new NotNull()","new Alphanumeric()"
"icon_url" optional (can be empty string ie "") but if present, then validate with "new Alphanumeric()"
I think new Custom() would not help so much, because it would fail at other rule.
Thank you