diff options
Diffstat (limited to 'app/php')
-rw-r--r-- | app/php/model/User.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/php/model/User.php b/app/php/model/User.php index 8a33f67..b31b926 100644 --- a/app/php/model/User.php +++ b/app/php/model/User.php @@ -5,7 +5,7 @@ Prado::using('Application.model.Calendar'); class User extends TActiveRecord { const TABLE = 'users'; - + public $ID; public $Login; public $Password; @@ -23,11 +23,11 @@ class User extends TActiveRecord { public static $RELATIONS = [ 'Calendars' => [self::MANY_TO_MANY, 'Calendar', 'user_selections'] ]; - + public static function finder($className=__CLASS__) { return parent::finder($className); } - + } ?> |