'string', 'order' => 'int', ]; /** * Create a add component group command instance. * * @param \CachetHQ\Cachet\Models\ComponentGroup $group * @param string $name * @param int $order * * @return void */ public function __construct(ComponentGroup $group, $name, $order) { $this->group = $group; $this->name = $name; $this->order = (int) $order; } }