ErrorRendererInterface.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\ErrorHandler\ErrorRenderer;
  11. use Symfony\Component\ErrorHandler\Exception\FlattenException;
  12. /**
  13. * Formats an exception to be used as response content.
  14. *
  15. * @author Yonel Ceruto <yonelceruto@gmail.com>
  16. */
  17. interface ErrorRendererInterface
  18. {
  19. public const IDE_LINK_FORMATS = [
  20. 'textmate' => 'txmt://open?url=file://%f&line=%l',
  21. 'macvim' => 'mvim://open?url=file://%f&line=%l',
  22. 'emacs' => 'emacs://open?url=file://%f&line=%l',
  23. 'sublime' => 'subl://open?url=file://%f&line=%l',
  24. 'phpstorm' => 'phpstorm://open?file=%f&line=%l',
  25. 'atom' => 'atom://core/open/file?filename=%f&line=%l',
  26. 'vscode' => 'vscode://file/%f:%l',
  27. ];
  28. /**
  29. * Renders a Throwable as a FlattenException.
  30. */
  31. public function render(\Throwable $exception): FlattenException;
  32. }