TeamInterestsQuery.php 599 Bytes
<?php

namespace frontend\models;

/**
 * This is the ActiveQuery class for [[TeamInterests]].
 *
 * @see TeamInterests
 */
class TeamInterestsQuery extends \yii\db\ActiveQuery
{
    /*public function active()
    {
        $this->andWhere('[[status]]=1');
        return $this;
    }*/

    /**
     * @inheritdoc
     * @return TeamInterests[]|array
     */
    public function all($db = null)
    {
        return parent::all($db);
    }

    /**
     * @inheritdoc
     * @return TeamInterests|array|null
     */
    public function one($db = null)
    {
        return parent::one($db);
    }
}