private function ExceptionHandler::abbrClass

2 calls to ExceptionHandler::abbrClass()
ExceptionHandler::formatArgs in drupal/core/vendor/symfony/debug/Symfony/Component/Debug/ExceptionHandler.php
Formats an array as a string.
ExceptionHandler::getContent in drupal/core/vendor/symfony/debug/Symfony/Component/Debug/ExceptionHandler.php
Gets the HTML content associated with the given exception.

File

drupal/core/vendor/symfony/debug/Symfony/Component/Debug/ExceptionHandler.php, line 277

Class

ExceptionHandler
ExceptionHandler converts an exception to a Response object.

Namespace

Symfony\Component\Debug

Code

private function abbrClass($class) {
  $parts = explode('\\', $class);
  return sprintf("<abbr title=\"%s\">%s</abbr>", $class, array_pop($parts));
}