DebuggerInterface.php 669 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Symfony\Components\Templating;
  3. /*
  4. * This file is part of the symfony package.
  5. *
  6. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. /**
  12. * DebuggerInterface is the interface you need to implement
  13. * to debug template loader instances.
  14. *
  15. * @package symfony
  16. * @subpackage templating
  17. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  18. */
  19. interface DebuggerInterface
  20. {
  21. /**
  22. * Logs a message.
  23. *
  24. * @param string $message A message to log
  25. */
  26. function log($message);
  27. }