Skip to content

Instantly share code, notes, and snippets.

@ollieread
Created September 19, 2014 12:29
Show Gist options
  • Save ollieread/4688243de6a66665dd40 to your computer and use it in GitHub Desktop.
Save ollieread/4688243de6a66665dd40 to your computer and use it in GitHub Desktop.
<?php
class MyValidator extends BaseValidator
{
public static $rules = [
'create' => [
'field' => ['rule1', 'rule2']
],
'update' => [
'field' => ['rule3']
]
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment