|
4 | 4 |
|
5 | 5 | namespace Sentry\SentryBundle;
|
6 | 6 |
|
7 |
| -use Doctrine\DBAL\Driver as DoctrineDriverInterface; |
8 |
| -use Doctrine\DBAL\Driver\DriverException as LegacyDriverExceptionInterface; |
9 |
| -use Doctrine\DBAL\Driver\Exception as DriverExceptionInterface; |
10 | 7 | use Doctrine\DBAL\Driver\ExceptionConverterDriver as LegacyExceptionConverterDriverInterface;
|
11 | 8 | use Doctrine\DBAL\Driver\Middleware as DoctrineMiddlewareInterface;
|
12 |
| -use Doctrine\DBAL\Driver\Result; |
13 |
| -use Doctrine\DBAL\Driver\Statement; |
14 | 9 | use Sentry\SentryBundle\EventListener\ErrorListenerExceptionEvent;
|
15 | 10 | use Sentry\SentryBundle\EventListener\RequestListenerControllerEvent;
|
16 | 11 | use Sentry\SentryBundle\EventListener\RequestListenerRequestEvent;
|
17 | 12 | use Sentry\SentryBundle\EventListener\RequestListenerResponseEvent;
|
18 | 13 | use Sentry\SentryBundle\EventListener\RequestListenerTerminateEvent;
|
19 | 14 | use Sentry\SentryBundle\EventListener\SubRequestListenerRequestEvent;
|
20 |
| -use Sentry\SentryBundle\Tracing\Doctrine\DBAL\Compatibility\DriverInterface; |
21 | 15 | use Sentry\SentryBundle\Tracing\Doctrine\DBAL\Compatibility\ExceptionConverterDriverInterface;
|
22 | 16 | use Sentry\SentryBundle\Tracing\Doctrine\DBAL\Compatibility\MiddlewareInterface;
|
23 | 17 | use Symfony\Component\HttpKernel\Event\ControllerEvent;
|
@@ -94,26 +88,11 @@ class_alias(GetResponseEvent::class, SubRequestListenerRequestEvent::class);
|
94 | 88 | }
|
95 | 89 | }
|
96 | 90 |
|
97 |
| -if (interface_exists(Statement::class) && !interface_exists(Result::class)) { |
98 |
| - /** @psalm-suppress UndefinedClass */ |
99 |
| - class_alias(Statement::class, Result::class); |
100 |
| -} |
101 |
| - |
102 |
| -if (interface_exists(DriverExceptionInterface::class) && !interface_exists(LegacyDriverExceptionInterface::class)) { |
103 |
| - /** @psalm-suppress UndefinedClass */ |
104 |
| - class_alias(DriverExceptionInterface::class, LegacyDriverExceptionInterface::class); |
105 |
| -} |
106 |
| - |
107 | 91 | if (!interface_exists(DoctrineMiddlewareInterface::class)) {
|
108 | 92 | /** @psalm-suppress UndefinedClass */
|
109 | 93 | class_alias(MiddlewareInterface::class, DoctrineMiddlewareInterface::class);
|
110 | 94 | }
|
111 | 95 |
|
112 |
| -if (!interface_exists(DoctrineDriverInterface::class)) { |
113 |
| - /** @psalm-suppress UndefinedClass */ |
114 |
| - class_alias(DriverInterface::class, DoctrineDriverInterface::class); |
115 |
| -} |
116 |
| - |
117 | 96 | if (!interface_exists(LegacyExceptionConverterDriverInterface::class)) {
|
118 | 97 | /** @psalm-suppress UndefinedClass */
|
119 | 98 | class_alias(ExceptionConverterDriverInterface::class, LegacyExceptionConverterDriverInterface::class);
|
|
0 commit comments