Files
yii2-usuario/src/User/Query/ProfileQuery.php
2017-07-15 16:44:33 +02:00

28 lines
552 B
PHP

<?php
/*
* This file is part of the 2amigos/yii2-usuario project.
*
* (c) 2amigOS! <http://2amigos.us/>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Da\User\Query;
use yii\db\ActiveQuery;
class ProfileQuery extends ActiveQuery
{
/**
* Search by user id
* @param mixed $user_id
* @return ActiveQuery
*/
public function whereUserId($user_id)
{
return $this->andWhere(['user_id' => $user_id]);
}
}