Quiet.php 586 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\DB\Logger;
  7. class Quiet implements \Magento\Framework\DB\LoggerInterface
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function log($str)
  13. {
  14. }
  15. /**
  16. * {@inheritdoc}
  17. */
  18. public function logStats($type, $sql, $bind = [], $result = null)
  19. {
  20. }
  21. /**
  22. * {@inheritdoc}
  23. */
  24. public function critical(\Exception $e)
  25. {
  26. }
  27. /**
  28. * {@inheritdoc}
  29. */
  30. public function startTimer()
  31. {
  32. }
  33. }