Newer
Older
ubFramework / Portal / docroot / phpMyAdmin / libraries / controllers / DatabaseController.php
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 494 bytes Cleaning Up Making It A Sub Module
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Holds the PMA\DatabaseController
 *
 * @package PMA
 */
namespace PMA\libraries\controllers;

/**
 * Handles database related logic
 *
 * @package PhpMyAdmin
 */
abstract class DatabaseController extends Controller
{
    /**
     * @var string $db
     */
    protected $db;

    /**
     * Constructor
     */
    public function __construct()
    {
        parent::__construct();
        $this->db = $this->container->get('db');
    }
}