Skip to content

Commit e6cb7d8

Browse files
committed
Remove return type from ExceptionHandler::setFileLinkFormat
1 parent 18793b7 commit e6cb7d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Debug/ExceptionHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ public function setHandler(callable $handler = null): ?callable
9797
*
9898
* @param string|FileLinkFormatter $fileLinkFormat The format for links to source files
9999
*
100-
* @return string The previous file link format
100+
* @return string|FileLinkFormatter|null The previous file link format
101101
*/
102-
public function setFileLinkFormat($fileLinkFormat): string
102+
public function setFileLinkFormat($fileLinkFormat)
103103
{
104104
$old = $this->fileLinkFormat;
105105
$this->fileLinkFormat = $fileLinkFormat;

0 commit comments

Comments
 (0)