DebugLoggerInterface.php 859 B

1234567891011121314151617181920212223242526272829303132333435363738
  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\Log;
  11. /**
  12. * DebugLoggerInterface.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. */
  16. interface DebugLoggerInterface
  17. {
  18. /**
  19. * Returns an array of logs.
  20. *
  21. * A log is an array with the following mandatory keys:
  22. * timestamp, message, priority, and priorityName.
  23. * It can also have an optional context key containing an array.
  24. *
  25. * @return array An array of logs
  26. */
  27. public function getLogs();
  28. /**
  29. * Returns the number of errors.
  30. *
  31. * @return integer The number of errors
  32. */
  33. public function countErrors();
  34. }