sodium_increment

The timeline below displays how wordpress function sodium_increment has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 2.1

/**
 * @see ParagonIE_Sodium_Compat::increment()
 * @param string $string
 * @return void
 * @throws SodiumException
 * @throws TypeError
 */
function sodium_increment(&$string)
{
    ParagonIE_Sodium_Compat::increment($string);
}

WordPress Version: 5.2

/**
 * @see ParagonIE_Sodium_Compat::increment()
 * @param &string $string
 * @return void
 * @throws SodiumException
 * @throws TypeError
 */
function sodium_increment(&$string)
{
    ParagonIE_Sodium_Compat::increment($string);
}