Fenos\Notifynder\Categories\CategoryRepository::update PHP Méthode

update() public méthode

Update a category by id.
public update ( array $data, $categoryId ) : mixed
$data array
$categoryId
Résultat mixed
    public function update(array $data, $categoryId)
    {
        return $this->categoryModel->where('id', $categoryId)->update($data);
    }