Cast status to int on update component command

This commit is contained in:
opengd 2018-06-14 09:14:27 +02:00
parent bc25174306
commit f74c5df97b

View File

@ -123,7 +123,7 @@ final class UpdateComponentCommand
$this->component = $component;
$this->name = $name;
$this->description = $description;
$this->status = $status;
$this->status = (int) $status;
$this->link = $link;
$this->order = $order;
$this->group_id = $group_id;