You are here

public function ExceptionHandler::setFileLinkFormat in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/debug/ExceptionHandler.php \Symfony\Component\Debug\ExceptionHandler::setFileLinkFormat()

Sets the format for links to source files.

Parameters

string $format The format for links to source files:

Return value

string The previous file link format.

File

vendor/symfony/debug/ExceptionHandler.php, line 99

Class

ExceptionHandler
ExceptionHandler converts an exception to a Response object.

Namespace

Symfony\Component\Debug

Code

public function setFileLinkFormat($format) {
  $old = $this->fileLinkFormat;
  $this->fileLinkFormat = $format;
  return $old;
}