Skip to content

Instantly share code, notes, and snippets.

@nsanden
Created January 10, 2015 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nsanden/a29b98ec6ca2c2f1b04a to your computer and use it in GitHub Desktop.
Save nsanden/a29b98ec6ca2c2f1b04a to your computer and use it in GitHub Desktop.
public function rules()
{
return [
// the name, email, subject and body attributes are required
[['name', 'email', 'subject', 'body'], 'required'],
// the email attribute should be a valid email address
['email', 'email'],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment