for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* _ __ __ _____ _____ ___ ____ _____
* | | / // // ___//_ _// || __||_ _|
* | |/ // /(__ ) / / / /| || | | |
* |___//_//____/ /_/ /_/ |_||_| |_|
* @link http://vistart.name/
* @copyright Copyright (c) 2016 vistart
* @license http://vistart.name/license/
*/
namespace vistart\Models\queries;
use vistart\Models\traits\EntityQueryTrait;
* Description of BaseMongoEntityQuery
*
* @version 2.0
* @author vistart <[email protected]>
class BaseMongoEntityQuery extends \yii\mongodb\ActiveQuery
{
use EntityQueryTrait;
public function init()
$this->buildNoInitModel();
parent::init();
}