app/models/Data/User.php: remove github_user field.
This commit is contained in:
parent
ddf18fedb9
commit
cdf4a73c56
1 changed files with 1 additions and 21 deletions
|
|
@ -28,8 +28,6 @@ class User extends Model
|
|||
|
||||
protected $github_id;
|
||||
|
||||
protected $github_user;
|
||||
|
||||
protected $gitlab_id;
|
||||
|
||||
protected $google_id;
|
||||
|
|
@ -174,25 +172,7 @@ class User extends Model
|
|||
$this->password = $password;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getGithubUser()
|
||||
{
|
||||
return $this->github_user;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $github_user
|
||||
* @return User
|
||||
*/
|
||||
public function setGithubUser($github_user)
|
||||
{
|
||||
$this->github_user = $github_user;
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
|
|
|
|||
Reference in a new issue