No more gender

This commit is contained in:
Michael 2020-02-16 10:55:18 +00:00
parent 797e3a2079
commit 3bd1f3a836
24 changed files with 32 additions and 128 deletions

View file

@ -71,8 +71,6 @@ class Introduction implements \JsonSerializable
/** @var string */
private $keywords = '';
/** @var string */
private $gender = '';
/** @var string */
private $location = '';
/** @var string */
private $about = '';
@ -253,14 +251,6 @@ class Introduction implements \JsonSerializable
return $this->keywords;
}
/**
* @return string
*/
public function getGender()
{
return $this->gender;
}
/**
* @return string
*/
@ -301,7 +291,6 @@ class Introduction implements \JsonSerializable
$this->network = $data['network'] ?? '';
$this->uid = $data['uid'] ?? -1;
$this->keywords = $data['keywords'] ?? '';
$this->gender = $data['gender'] ?? '';
$this->location = $data['location'] ?? '';
$this->about = $data['about'] ?? '';
}