fix nullable return type hint

This commit is contained in:
Mark Magyar
2023-05-27 21:37:44 +02:00
parent d94ee9c769
commit 04ff3e7e3f
+1 -1
View File
@@ -10,7 +10,7 @@ use function preg_match;
trait HandlesDataUri
{
/**
* @return array<string, string>
* @return array<string, string>|null
*/
private function DecodeDataUri(string $datauri): ?array
{