Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 6 |
| ParticipantQuery | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 6 |
| active | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 6 |
|||
| <?php | |
| namespace common\models; | |
| /** | |
| * This is the query model class for table "{{%participant}}". | |
| */ | |
| class ParticipantQuery extends \yii\db\ActiveQuery | |
| { | |
| public function active() | |
| { | |
| return $this->joinWith([ | |
| 'user' => function (UserQuery $query) { | |
| $query->active(); | |
| } | |
| ]); | |
| } | |
| } |