app\models\Closet::save PHP Method

save() public method

Do really database operations.
public save ( ) : boolean
return boolean
    public function save()
    {
        if (empty($this->items_modified)) {
            return;
        }
        return $this->setTextures(json_encode($this->textures));
    }