Extends
lithium\core\StaticObject
Resets the `Media` class to its default state. Mainly used for ensuring a consistent state
during testing.
Returns
voidSource
public static function reset() {
foreach (get_class_vars(__CLASS__) as $name => $value) {
static::${$name} = array();
}
}