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/help/PostgresDoc.php')
-rw-r--r--src/help/PostgresDoc.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/help/PostgresDoc.php b/src/help/PostgresDoc.php
index 27d7ad08..e40fa95d 100644
--- a/src/help/PostgresDoc.php
+++ b/src/help/PostgresDoc.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin 6.1.3
+ * PHPPgAdmin6
*/
namespace PHPPgAdmin\Help;
@@ -180,6 +180,9 @@ class PostgresDoc
];
}
+ /**
+ * @return string
+ */
public function getHelpBase()
{
return \sprintf(\str_replace('http://', 'https://', $this->conf['help_base']), (string) ($this->major_version));
@@ -188,24 +191,20 @@ class PostgresDoc
/**
* Undocumented function.
*
- * @param null|string $topic
- *
* @return null|string|string[]
*/
public function getHelpTopics(?string $topic = null)
{
- return $topic ? $this->help_topics[$topic] ?? null : $this->help_topics;
+ return $topic ? $this->help_topics[$topic] ?? null : $this->help_topics;
}
/**
* Undocumented function.
*
- * @param string $topic
- *
* @return null|string|string[]
*/
public function getHelpTopic(string $topic)
{
- return $this->help_topics[$topic] ?? null;
+ return $this->help_topics[$topic] ?? null;
}
}