From cdf4a73c569f02060658e8487668e228c79770a6 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 10 Jun 2018 20:56:36 +0200 Subject: [PATCH] app/models/Data/User.php: remove github_user field. --- app/models/Data/User.php | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/app/models/Data/User.php b/app/models/Data/User.php index 82c438e..717a4dd 100644 --- a/app/models/Data/User.php +++ b/app/models/Data/User.php @@ -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 */