Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 5 |
| SurveyQuery | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 5 |
| __construct | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 5 |
|||
| <?php | |
| namespace common\models; | |
| use Yii; | |
| /** | |
| * This is the query model class for table "{{%survey}}". | |
| */ | |
| class SurveyQuery extends \yii\db\ActiveQuery implements ISurveyQuery | |
| { use GenericSurveyQuery; | |
| /** | |
| * @inheritdoc | |
| * Set up GenericSurveyQuery | |
| */ | |
| public function __construct($config = []) | |
| { | |
| parent::__construct($config); | |
| $this->subQuery = SurveyLock::find(); | |
| $this->foreignColumn = 'survey_id'; | |
| } | |
| } |