You are here

function deprecation_test_deprecated_hook in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/deprecation_test/deprecation_test.module \deprecation_test_deprecated_hook()

Implements hook_deprecated_hook().

File

core/modules/system/tests/modules/deprecation_test/deprecation_test.module, line 25
Contains functions for testing calling deprecated functions in tests.

Code

function deprecation_test_deprecated_hook($arg) {
  return $arg;
}