Skip to content

Instantly share code, notes, and snippets.

@tbsmcd
Created September 23, 2012 16:29
Show Gist options
  • Save tbsmcd/3772216 to your computer and use it in GitHub Desktop.
Save tbsmcd/3772216 to your computer and use it in GitHub Desktop.
<?php
class Message extends AppModel {
public $validate = array(
'body' => array(
'rule' => 'notempty',
'message' => 'NOTEMPTY',
),
'name' => array(
'rule' => 'notempty',
'message' => 'NOTEMPTY',
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment