Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
admin
/
htdocs
/
phpmyadmin-5.2
/
libraries
/
classes
/
Controllers
/
Table
/
/srv/admin/htdocs/phpmyadmin-5.2/libraries/classes/Controllers/Table/AbstractController.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Controllers\Table; use PhpMyAdmin\Controllers\AbstractController as Controller; use PhpMyAdmin\ResponseRenderer; use PhpMyAdmin\Template; abstract class AbstractController extends Controller { /** @var string */ protected $db; /** @var string */ protected $table; public function __construct(ResponseRenderer $response, Template $template, string $db, string $table) { parent::__construct($response, $template); $this->db = $db; $this->table = $table; } }