sforkowany z mirror/social
rodzic
7d8e2b1065
commit
ccf7433235
|
@ -386,6 +386,18 @@ class Person extends ACore implements JsonSerializable {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $detail
|
||||||
|
* @param bool $value
|
||||||
|
*
|
||||||
|
* @return Person
|
||||||
|
*/
|
||||||
|
public function addDetailBool(string $detail, bool $value): Person {
|
||||||
|
$this->details[$detail] = $value;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $details
|
* @param array $details
|
||||||
*
|
*
|
||||||
|
@ -424,12 +436,6 @@ class Person extends ACore implements JsonSerializable {
|
||||||
$this->setIcon($icon);
|
$this->setIcon($icon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ->setCreation($this->getInt('creation', $data, 0));
|
|
||||||
|
|
||||||
// if ($this->getPreferredUsername() === '') {
|
|
||||||
// $this->setType('Invalid');
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -451,10 +457,6 @@ class Person extends ACore implements JsonSerializable {
|
||||||
->setFeatured($this->get('featured', $data, ''))
|
->setFeatured($this->get('featured', $data, ''))
|
||||||
->setDetails($this->getArray('details', $data, []))
|
->setDetails($this->getArray('details', $data, []))
|
||||||
->setCreation($this->getInt('creation', $data, 0));
|
->setCreation($this->getInt('creation', $data, 0));
|
||||||
|
|
||||||
// if ($this->getPreferredUsername() === '') {
|
|
||||||
// $this->setType('Invalid');
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue