Skip to content

Instantly share code, notes, and snippets.

@mateusgf
Created July 26, 2013 13:05
Show Gist options
  • Save mateusgf/6088698 to your computer and use it in GitHub Desktop.
Save mateusgf/6088698 to your computer and use it in GitHub Desktop.
<?php
class Question extends Basemodel {
public static $rules = array(
'question'=>'required|min:10|max:255',
'solved'=>'in:0,1'
);
public function user() {
return $this->belongs_to('User');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment