Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Database/Postgres13.php')
-rw-r--r--src/Database/Postgres13.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Database/Postgres13.php b/src/Database/Postgres13.php
new file mode 100644
index 00000000..1fad964d
--- /dev/null
+++ b/src/Database/Postgres13.php
@@ -0,0 +1,30 @@
+<?php
+
+/**
+ * PHPPgAdmin6
+ */
+
+namespace PHPPgAdmin\Database;
+
+use PHPPgAdmin\Help\PostgresDoc12;
+
+/**
+ * @file
+ * PostgreSQL 13.x support
+ */
+/**
+ * Class to add support for Postgres13.
+ * (Which doesn't exist yet, but it's better than rejecting connections).
+ */
+class Postgres13 extends Postgres12
+{
+ /**
+ * @var float
+ */
+ public $major_version = 13;
+
+ /**
+ * @var class-string
+ */
+ public $help_classname = PostgresDoc12::class;
+}