Jamm\Memory\RedisServer::sInterStore PHP Method

sInterStore() public method

public sInterStore ( $destination, $key )
    public function sInterStore($destination, $key)
    {
        if (is_array($key)) {
            array_unshift($key, $destination);
        } else {
            $key = func_get_args();
        }
        return $this->__call('sInterStore', $key);
    }