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