Skip to content

Commit 36a9ea7

Browse files
committed
Accept Null as a return type
1 parent 18793b7 commit 36a9ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Debug/ExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function setHandler(callable $handler = null): ?callable
9999
*
100100
* @return string The previous file link format
101101
*/
102-
public function setFileLinkFormat($fileLinkFormat): string
102+
public function setFileLinkFormat($fileLinkFormat): ?string
103103
{
104104
$old = $this->fileLinkFormat;
105105
$this->fileLinkFormat = $fileLinkFormat;

0 commit comments

Comments
 (0)