This commit is contained in:
Dennis Eichhorn 2017-11-09 17:42:37 +01:00
parent f9021ab3ed
commit 8ca141802a

View File

@ -179,6 +179,11 @@ class KanbanCard implements \JsonSerializable
$this->media[] = $media; $this->media[] = $media;
} }
public function setLabels(array $labels) /* : void */
{
$this->labels = $labels;
}
public function getLabels() : array public function getLabels() : array
{ {
return $this->labels; return $this->labels;