Compare commits

..

No commits in common. "d023ffa331784d54af424cdef68ebb6d0f954a12" and "e2c58cd79199cfd78cb7879d28f21c5be3d5e746" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ class Restriction extends Entity implements JsonSerializable {
$this->addType('allowRecording', 'boolean');
}
public function setGroupName(?string $groupName) {
$this->groupName = $groupName ?? '';
public function setGroupName(string $groupName) {
$this->groupName = $groupName;
}
public function jsonSerialize(): array {