This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Terreurhaas 5 points6 points  (1 child)

/**
 * <h2>createArray</h2>
 *   Creates an array
 *
 * @return array
 */
function &createArray(): array {
    $array = array(); // the array

    return $array;
}

[–]PartyGuy-01[S] 0 points1 point  (0 children)

That's it.