RelationQuery.php
589 Bytes
<?php
namespace common\modules\relation\models;
/**
* This is the ActiveQuery class for [[Relation]].
*
* @see Relation
*/
class RelationQuery extends \yii\db\ActiveQuery
{
/*public function active()
{
$this->andWhere('[[status]]=1');
return $this;
}*/
/**
* @inheritdoc
* @return Relation[]|array
*/
public function all($db = null)
{
return parent::all($db);
}
/**
* @inheritdoc
* @return Relation|array|null
*/
public function one($db = null)
{
return parent::one($db);
}
}