From 8ca141802a4749b14bdc4fb4eda6f1fdda7fcb02 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 9 Nov 2017 17:42:37 +0100 Subject: [PATCH] Fix #16 --- Models/KanbanCard.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Models/KanbanCard.php b/Models/KanbanCard.php index a771f1a..4d5ae38 100644 --- a/Models/KanbanCard.php +++ b/Models/KanbanCard.php @@ -179,6 +179,11 @@ class KanbanCard implements \JsonSerializable $this->media[] = $media; } + public function setLabels(array $labels) /* : void */ + { + $this->labels = $labels; + } + public function getLabels() : array { return $this->labels;