1 | <?php |
||
24 | abstract class BaseRedisBlameableModel extends BaseRedisEntityModel |
||
25 | { |
||
26 | use BlameableTrait; |
||
27 | |||
28 | /** |
||
29 | * Initialize the blameable model. |
||
30 | * If query class is not specified, [[BaseRedisBlameableQuery]] will be taken. |
||
31 | */ |
||
32 | 2 | public function init() |
|
43 | |||
44 | /** |
||
45 | * Get the query class with specified identity. |
||
46 | * @param BaseUserModel $identity |
||
47 | * @return BaseRedisBlameableQuery |
||
48 | */ |
||
49 | 1 | public static function findByIdentity($identity = null) |
|
53 | } |
||
54 |