1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-08 06:06:45 +02:00

refactor(markdown): fix PHPDoc @param for parse() method

This commit is contained in:
Awilum
2021-01-13 12:15:12 +03:00
parent 7960cf2608
commit 8731e89c04

View File

@@ -104,7 +104,7 @@ final class Markdown
*
* @return mixed The MARKDOWN converted to a PHP value
*/
public function parse(string $input, bool $cache = true): string
public function parse(string $input, bool $cache = true)
{
if ($cache === true && flextype('registry')->get('flextype.settings.cache.enabled') === true) {
$key = $this->getCacheID($input);