Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / deprecation_test / src / DeprecatedController.php
diff --git a/web/core/modules/system/tests/modules/deprecation_test/src/DeprecatedController.php b/web/core/modules/system/tests/modules/deprecation_test/src/DeprecatedController.php
new file mode 100644 (file)
index 0000000..44cf330
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+namespace Drupal\deprecation_test;
+
+/**
+ * Defines a controller that calls a deprecated method.
+ */
+class DeprecatedController {
+
+  /**
+   * Controller callback.
+   *
+   * @return array
+   *   Render array.
+   */
+  public function deprecatedMethod() {
+    return [
+      '#markup' => deprecation_test_function(),
+    ];
+  }
+
+}