You are here

DeleteControllerBase.php in Delete all 2.x

Same filename and directory in other branches
  1. 8 src/Controller/DeleteControllerBase.php

File

src/Controller/DeleteControllerBase.php
View source
<?php

namespace Drupal\delete_all\Controller;

use Drupal\Core\Controller\ControllerBase;

/**
 * Returns responses for devel module routes.
 */
abstract class DeleteControllerBase extends ControllerBase {
  protected $connection;
  public function __construct() {
    $this->connection = \Drupal::database();
  }

}

Classes

Namesort descending Description
DeleteControllerBase Returns responses for devel module routes.