1 | <?php |
||
24 | abstract class Record extends BaseRecord |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * The table alias |
||
29 | */ |
||
30 | const TABLE_ALIAS = ''; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public static function tableAlias() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | public static function tableName() |
||
47 | |||
48 | /******************************************* |
||
49 | * RULES |
||
50 | *******************************************/ |
||
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | public function rules() |
||
82 | } |
||
83 |