AjaxDataCollector.php 943 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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\DataCollector;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. /**
  14. * AjaxDataCollector.
  15. *
  16. * @author Bart van den Burg <bart@burgov.nl>
  17. *
  18. * @final since Symfony 4.4
  19. */
  20. class AjaxDataCollector extends DataCollector
  21. {
  22. /**
  23. * {@inheritdoc}
  24. *
  25. * @param \Throwable|null $exception
  26. */
  27. public function collect(Request $request, Response $response/*, \Throwable $exception = null*/)
  28. {
  29. // all collecting is done client side
  30. }
  31. public function reset()
  32. {
  33. // all collecting is done client side
  34. }
  35. public function getName()
  36. {
  37. return 'ajax';
  38. }
  39. }