Xpressengine\Category\CategoryHandler::put PHP 메소드

put() 공개 메소드

Update category
public put ( Category $category ) : Category
$category Xpressengine\Category\Models\Category category instance
리턴 Xpressengine\Category\Models\Category
    public function put(Category $category)
    {
        if ($category->isDirty()) {
            $category->save();
        }
        return $category;
    }