From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../libraries/classes/Plugins/UploadInterface.php | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 srcs/phpmyadmin/libraries/classes/Plugins/UploadInterface.php (limited to 'srcs/phpmyadmin/libraries/classes/Plugins/UploadInterface.php') diff --git a/srcs/phpmyadmin/libraries/classes/Plugins/UploadInterface.php b/srcs/phpmyadmin/libraries/classes/Plugins/UploadInterface.php deleted file mode 100644 index 3839aab..0000000 --- a/srcs/phpmyadmin/libraries/classes/Plugins/UploadInterface.php +++ /dev/null @@ -1,35 +0,0 @@ -upload plugins - * - * @package PhpMyAdmin - */ -declare(strict_types=1); - -namespace PhpMyAdmin\Plugins; - -/** - * Provides a common interface that will have to implemented by all of the - * import->upload plugins. - * - * @package PhpMyAdmin - */ -interface UploadInterface -{ - /** - * Gets the specific upload ID Key - * - * @return string ID Key - */ - public static function getIdKey(); - - /** - * Returns upload status. - * - * @param string $id upload id - * - * @return array|null - */ - public static function getUploadStatus($id); -} -- cgit