Add more
This commit is contained in:
@@ -12,6 +12,7 @@ class Board extends Entity implements JsonSerializable {
|
||||
protected $owner;
|
||||
protected $color;
|
||||
protected $archived;
|
||||
protected $labels;
|
||||
public function __construct() {
|
||||
$this->addType('id','integer');
|
||||
}
|
||||
@@ -20,7 +21,8 @@ class Board extends Entity implements JsonSerializable {
|
||||
'id' => $this->id,
|
||||
'title' => $this->title,
|
||||
'owner' => $this->owner,
|
||||
'color' => $this->color
|
||||
'color' => $this->color,
|
||||
'labels' => $this->labels,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user