Archived
1
0
Fork 0

app/models/Data/User.php: remove github_user field.

This commit is contained in:
Henrik Hautakoski 2018-06-10 20:56:36 +02:00
parent ddf18fedb9
commit cdf4a73c56

View file

@ -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
*/