public static function DStatic::reset in Little helpers 7
Delete all static variables that have been accumulated in this request.
File
- src/
DStatic.php, line 52
Class
- DStatic
- This class deals with request wide variables and flags. It's best to think of it like an object oriented version of drupal_static().
Namespace
Drupal\little_helpersCode
public static function reset() {
self::$data = array();
}