You are here

public function TagadelicDrupalWrapper::shuffle in Tagadelic 7.2

Wraps PHP core function `shuffle()` http://php.net/manual/en/function.shuffle.php

File

./TagadelicDrupalWrapper.php, line 55

Class

TagadelicDrupalWrapper
Wrapper around Drupal Core functions.

Code

public function shuffle(&$array) {
  shuffle($array);
}