You are here

function authcache_enum_test_authcache_enum_key_properties_alter in Authenticated User Page Caching (Authcache) 7.2

Implements hook_authcache_enum_key_properties_alter()

File

modules/authcache_enum/tests/authcache_enum_test.module, line 36
Stub module for Authcache Enum test.

Code

function authcache_enum_test_authcache_enum_key_properties_alter(&$properties) {
  $result = HookStub::record(__FUNCTION__, func_get_args());
  ksort($properties);
  return $result;
}