Function __global->merge_authors

Definitions

sources/authors.php

  • Merge two authors.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$from ID_TEXT No No required parameter N/A N/A The first author (being removed effectively)
$to ID_TEXT No No required parameter N/A N/A The second author (subsuming the first)

Preview

Code (PHP)

/**
 * Merge two authors.
 *
 * @param  ID_TEXT $from The first author (being removed effectively)
 * @param  ID_TEXT $to The second author (subsuming the first)
 */

function merge_authors(string $from, string $to)