vendor/doctrine/phpcr-bundle/src/DataCollector/PHPCRDataCollector.php line 16

Open in your IDE?
  1. <?php
  2. namespace Doctrine\Bundle\PHPCRBundle\DataCollector;
  3. use Symfony\Component\HttpFoundation\Request;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\HttpKernel\Kernel;
  6. /*
  7.  * Hackery to be compatible with both Symfony < 5 and >= 5.
  8.  *
  9.  * @author Christophe Coevoet <stof@notk.org>
  10.  * @author Lukas Kahwe Smith <smith@pooteeweet.org>
  11.  */
  12. if (Kernel::VERSION_ID >= 50000) {
  13.     class PHPCRDataCollector extends AbstractPHPCRDataCollector
  14.     {
  15.         /**
  16.          * {@inheritdoc}
  17.          */
  18.         public function collect(Request $requestResponse $response, \Throwable $exception null)
  19.         {
  20.             $this->collectInternal($request$response);
  21.         }
  22.     }
  23. } else {
  24.     class PHPCRDataCollector extends AbstractPHPCRDataCollector
  25.     {
  26.         /**
  27.          * {@inheritdoc}
  28.          */
  29.         public function collect(Request $requestResponse $response, \Exception $exception null)
  30.         {
  31.             $this->collectInternal($request$response);
  32.         }
  33.     }
  34. }