Drupal investigation

ErrorHandler.php 787B

12345678910111213141516171819202122232425262728
  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\HttpKernel\Debug;
  11. @trigger_error('The '.__NAMESPACE__.'\ErrorHandler class is deprecated since version 2.3 and will be removed in 3.0. Use the Symfony\Component\Debug\ErrorHandler class instead.', E_USER_DEPRECATED);
  12. use Symfony\Component\Debug\ErrorHandler as DebugErrorHandler;
  13. /**
  14. * ErrorHandler.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. *
  18. * @deprecated since version 2.3, to be removed in 3.0. Use the same class from the Debug component instead.
  19. */
  20. class ErrorHandler extends DebugErrorHandler
  21. {
  22. }