Skip to content

Instantly share code, notes, and snippets.

@drinkspiller
Created May 3, 2013 19:44
Show Gist options
  • Save drinkspiller/5513318 to your computer and use it in GitHub Desktop.
Save drinkspiller/5513318 to your computer and use it in GitHub Desktop.
<?php
class Post extends AppModel {
public $validate = array(
'title' => array(
'rule' => 'notEmpty',
'message' => 'Sorry, we need this one, sucka!'
),
'body' => array(
'rule' => 'notEmpty'
)
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment