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_id;
|
||||||
|
|
||||||
protected $github_user;
|
|
||||||
|
|
||||||
protected $gitlab_id;
|
protected $gitlab_id;
|
||||||
|
|
||||||
protected $google_id;
|
protected $google_id;
|
||||||
|
|
@ -175,24 +173,6 @@ class User extends Model
|
||||||
return $this;
|
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
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Reference in a new issue