This commit is contained in:
Bastian Allgeier
2020-07-07 12:40:13 +02:00
parent 5f025ac2c2
commit f79d2e960c
176 changed files with 10532 additions and 5343 deletions

View File

@@ -115,10 +115,10 @@ class SmartyPants
/**
* Parses the given text
*
* @param string $text
* @param string|null $text
* @return string
*/
public function parse(string $text): string
public function parse(string $text = null): string
{
// prepare the text
$text = str_replace('"', '"', $text);