You are here

UpgradeStatusTestContribErrorController.php in Upgrade Status 8.2

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() {
    drupal_set_message('I am deprecated');
  }

}

Classes

Namesort descending Description
UpgradeStatusTestContribErrorController Test class which contains deprecation error.