Phalcon\Translate\Adapter\Redis::update PHP Method

update() public method

Update a translation for given key (No existence check!)
public update ( string $translateKey, string $message ) : boolean
$translateKey string
$message string
return boolean
    public function update($translateKey, $message)
    {
        return $this->add($translateKey, $message);
    }