DatabaseController.php 552 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Holds the PhpMyAdmin\Controllers\DatabaseController
  5. *
  6. * @package PhpMyAdmin\Controllers
  7. */
  8. namespace PhpMyAdmin\Controllers;
  9. /**
  10. * Handles database related logic
  11. *
  12. * @package PhpMyAdmin\Controllers
  13. */
  14. abstract class DatabaseController extends Controller
  15. {
  16. /**
  17. * @var string $db
  18. */
  19. protected $db;
  20. /**
  21. * Constructor
  22. */
  23. public function __construct($response, $dbi, $db)
  24. {
  25. parent::__construct($response, $dbi);
  26. $this->db = $db;
  27. }
  28. }