ErrorRendererInterface.php 646 B

123456789101112131415161718192021222324252627
  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. /**
  20. * Renders a Throwable as a FlattenException.
  21. */
  22. public function render(\Throwable $exception): FlattenException;
  23. }