Remove return type from ExceptionHandler::setFileLinkFormat

This commit is contained in:
Jonathan 2019-06-24 16:34:46 +04:00
parent 18793b7ca7
commit e6cb7d866a
1 changed files with 2 additions and 2 deletions

View File

@ -97,9 +97,9 @@ class ExceptionHandler
*
* @param string|FileLinkFormatter $fileLinkFormat The format for links to source files
*
* @return string The previous file link format
* @return string|FileLinkFormatter|null The previous file link format
*/
public function setFileLinkFormat($fileLinkFormat): string
public function setFileLinkFormat($fileLinkFormat)
{
$old = $this->fileLinkFormat;
$this->fileLinkFormat = $fileLinkFormat;