Skip to content

Commit d93b6b0

Browse files
committed
Undo DBALException case changes
1 parent b869755 commit d93b6b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Neos.Flow/Classes/Persistence/Doctrine/EntityManagerConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ protected function applySecondLevelCacheSettingsToConfiguration(array $configure
217217
*
218218
* @param Configuration $config
219219
* @param EntityManager $entityManager
220-
* @throws DbalException
220+
* @throws DBALException
221221
*/
222222
public function enhanceEntityManager(Configuration $config, EntityManager $entityManager): void
223223
{

Neos.Flow/Classes/Persistence/Doctrine/Query.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public function getResult()
203203
$message = $this->throwableStorage->logThrowable($ormException);
204204
$this->logger->error($message, LogEnvironment::fromMethodName(__METHOD__));
205205
return [];
206-
} catch (DbalException $dbalException) {
206+
} catch (DBALException $dbalException) {
207207
$message = $this->throwableStorage->logThrowable($dbalException);
208208
$this->logger->debug($message);
209209

0 commit comments

Comments
 (0)