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