1 | <?php |
||
22 | class BaseRedisBlameableModel extends BaseRedisEntityModel |
||
23 | { |
||
24 | use BlameableTrait; |
||
25 | |||
26 | /** |
||
27 | * Initialize the blameable model. |
||
28 | * If query class is not specified, [[BaseBlameableQuery]] will be taken. |
||
29 | */ |
||
30 | public function init() |
||
41 | |||
42 | /** |
||
43 | * Get the query class with specified identity. |
||
44 | * @param \vistart\Models\models\BaseUserModel $identity |
||
45 | * @return \vistart\Models\queries\BaseBlameableQuery |
||
46 | */ |
||
47 | public static function findByIdentity($identity = null) |
||
51 | } |
||
52 |