Don't cast status to int. Fixes #2563

This commit is contained in:
James Brooks 2017-06-13 22:34:42 +01:00
parent bf2b45e2f7
commit eb08648dca

View File

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