You are here

UpgradeStatusTestContribErrorController.php in Upgrade Status 8

File

tests/modules/upgrade_status_test_contrib_error/src/Controller/UpgradeStatusTestContribErrorController.php
View source
<?php

namespace Drupal\upgrade_status_test_contrib_error\Controller;

use Drupal\Core\Controller\ControllerBase;

/**
 * Test class which contains deprecation error.
 */
class UpgradeStatusTestContribErrorController extends ControllerBase {
  public function content() {
    return [
      '#type' => 'markup',
      '#markup' => format_string('I am @deprecated', [
        '@deprecated' => 'deprecated',
      ]),
    ];
  }

}

Classes

Namesort descending Description
UpgradeStatusTestContribErrorController Test class which contains deprecation error.