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/Postgres90.php')
-rw-r--r--src/Database/Postgres90.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Database/Postgres90.php b/src/Database/Postgres90.php
new file mode 100644
index 00000000..af681451
--- /dev/null
+++ b/src/Database/Postgres90.php
@@ -0,0 +1,28 @@
+<?php
+
+/**
+ * PHPPgAdmin6
+ */
+
+namespace PHPPgAdmin\Database;
+
+use PHPPgAdmin\Help\PostgresDoc90;
+
+/**
+ * @file
+ * PostgreSQL 9.0 support
+ *
+ * Id: Postgres82.php,v 1.10 2007/12/28 16:21:25 ioguix Exp $
+ */
+class Postgres90 extends Postgres91
+{
+ /**
+ * @var float
+ */
+ public $major_version = 9.0;
+
+ /**
+ * @var class-string
+ */
+ public $help_classname = PostgresDoc90::class;
+}