aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/libraries/classes/Engines/Binlog.php
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/phpmyadmin/libraries/classes/Engines/Binlog.php')
-rw-r--r--srcs/phpmyadmin/libraries/classes/Engines/Binlog.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/srcs/phpmyadmin/libraries/classes/Engines/Binlog.php b/srcs/phpmyadmin/libraries/classes/Engines/Binlog.php
deleted file mode 100644
index 33d2eb1..0000000
--- a/srcs/phpmyadmin/libraries/classes/Engines/Binlog.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * The binary log storage engine
- *
- * @package PhpMyAdmin-Engines
- */
-declare(strict_types=1);
-
-namespace PhpMyAdmin\Engines;
-
-use PhpMyAdmin\StorageEngine;
-
-/**
- * The binary log storage engine
- *
- * @package PhpMyAdmin-Engines
- */
-class Binlog extends StorageEngine
-{
- /**
- * Returns string with filename for the MySQL helppage
- * about this storage engine
- *
- * @return string mysql helppage filename
- */
- public function getMysqlHelpPage()
- {
- return 'binary-log';
- }
-}