You are here

UpgradeStatusTestContribErrorController.php in Upgrade Status 8.3

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() {
    upgrade_status_test_contrib_error_function_8_to_9();
    upgrade_status_test_contrib_error_function_8_to_10();
    upgrade_status_test_contrib_error_function_9_to_10();
    upgrade_status_test_contrib_error_function_9_to_11();
  }

}

Classes

Namesort descending Description
UpgradeStatusTestContribErrorController Test class which contains deprecation error.