mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:50:20 +00:00
No more gender
This commit is contained in:
parent
797e3a2079
commit
3bd1f3a836
24 changed files with 32 additions and 128 deletions
|
@ -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'] ?? '';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue