1 | <?php |
||
25 | class UserAssociationQuery extends CacheableActiveQuery |
||
26 | { |
||
27 | use UserAttributeTrait, |
||
28 | OrganizationAttributeTrait; |
||
29 | |||
30 | /** |
||
31 | * @var string|string[]|null |
||
32 | */ |
||
33 | public $state; |
||
34 | |||
35 | /** |
||
36 | * @param string|string[]|null $value |
||
37 | * @return static The query object |
||
38 | */ |
||
39 | public function setState($value) |
||
44 | |||
45 | /** |
||
46 | * @param string|string[]|null $value |
||
47 | * @return static The query object |
||
48 | */ |
||
49 | public function state($value) |
||
53 | |||
54 | /** |
||
55 | * @inheritdoc |
||
56 | */ |
||
57 | public function init() |
||
65 | |||
66 | /** |
||
67 | * @inheritdoc |
||
68 | * @throws QueryAbortedException |
||
69 | */ |
||
70 | public function prepare($builder) |
||
85 | |||
86 | /** |
||
87 | * @return void |
||
88 | * @throws QueryAbortedException |
||
89 | */ |
||
90 | protected function applyUserParam() |
||
105 | |||
106 | /** |
||
107 | * @return void |
||
108 | * @throws QueryAbortedException |
||
109 | */ |
||
110 | protected function applyOrganizationParam() |
||
125 | } |
||
126 |