Merge pull request #3071 from opengd/2.4

Cast status to int on update component command
This commit is contained in:
James Brooks
2018-06-14 08:42:28 +01:00
committed by GitHub

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;