category = $category; } /** * @param array $data * @return Category */ public function run(array $data = []): Category { $this->category->created_uuid = $data['created_uuid']; $this->category->updated_uuid = $data['updated_uuid']; $this->category->title = $data['title']; $this->category->slug = $data['slug']; $this->category->save(); return $this->category; } }