Just wondering if I can do multi validation some how, I haven't really looked deep into it yet honestly, but I'd like to do something like
'validation' => array(
new PFBC\Validation\AlphaNumeric,
new PFBC\Validation\RegExp("/blah/")
)
or something of the sort, I know you might say just add the alpha to the regex, but bare in mind this is just an example, I'm actually planing to write an ajax validation, so I'd like the alphanumeric and the ajax to both need to pass. Thought I'd post here before I put too much into it.