aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-10-12 09:09:55 +0000
committerMario <mario@mariovavti.com>2022-10-12 09:09:55 +0000
commitd3856caf81c96b1ea2615a375122ca85e91a6fb3 (patch)
tree9e506b96668b45e1ced0a2ec701007a17e277d7a /vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
parente1f9b1c47d8f3ed3400465ec279e894a0d9255c5 (diff)
downloadvolse-hubzilla-d3856caf81c96b1ea2615a375122ca85e91a6fb3.tar.gz
volse-hubzilla-d3856caf81c96b1ea2615a375122ca85e91a6fb3.tar.bz2
volse-hubzilla-d3856caf81c96b1ea2615a375122ca85e91a6fb3.zip
composer update michelf/php-markdown
Diffstat (limited to 'vendor/michelf/php-markdown/Michelf/MarkdownInterface.php')
-rw-r--r--vendor/michelf/php-markdown/Michelf/MarkdownInterface.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php b/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
index 32069dff2..84e654590 100644
--- a/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
+++ b/vendor/michelf/php-markdown/Michelf/MarkdownInterface.php
@@ -4,7 +4,7 @@
*
* @package php-markdown
* @author Michel Fortin <michel.fortin@michelf.com>
- * @copyright 2004-2021 Michel Fortin <https://michelf.com/projects/php-markdown/>
+ * @copyright 2004-2022 Michel Fortin <https://michelf.com/projects/php-markdown/>
* @copyright (Original Markdown) 2004-2006 John Gruber <https://daringfireball.net/projects/markdown/>
*/
@@ -23,7 +23,7 @@ interface MarkdownInterface {
* @param string $text
* @return string
*/
- public static function defaultTransform($text);
+ public static function defaultTransform(string $text): string;
/**
* Main function. Performs some preprocessing on the input text
@@ -34,5 +34,5 @@ interface MarkdownInterface {
* @param string $text
* @return string
*/
- public function transform($text);
+ public function transform(string $text): string;
}