add organization

This commit is contained in:
Maximilian Ruta 2020-02-01 22:11:51 +01:00
parent 0f2b44b4e1
commit d07f6aee2c

View file

@ -15,7 +15,7 @@ class RegionalChapter
protected $name;
/**
* @var string
* @var string|null
*/
protected $type;
@ -57,17 +57,17 @@ class RegionalChapter
}
/**
* @return string
* @return string|null
*/
public function getType(): string
public function getType(): ?string
{
return $this->type;
}
/**
* @param string $type
* @param string|null $type
*/
public function setType(string $type): void
public function setType(?string $type): void
{
$this->type = $type;
}