Owl\Repositories\Eloquent\UserRepository::getById PHP Method

getById() public method

Get a user by user id.
public getById ( integer $id ) : Illuminate\Database\Eloquent\Model
$id integer
return Illuminate\Database\Eloquent\Model
    public function getById($id)
    {
        return $this->user->where('id', $id)->first();
    }