Skip to content

Instantly share code, notes, and snippets.

@dmregister
Created April 29, 2015 13:54
Show Gist options
  • Save dmregister/519e425279547f6c952b to your computer and use it in GitHub Desktop.
Save dmregister/519e425279547f6c952b to your computer and use it in GitHub Desktop.
validator
$inputFilter->add($factory->createInput(array(
'name' => 'lon',
'required' => true,
'validators' => array(
array(
array(
'name' => 'NotEmpty',
'options' => array(
'messages' => 'message'
)
)
)
)
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment