Skip to content

Commit

Permalink
bug #1116 fix method name (xabbuh)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

fix method name

fixes #1115

Commits
-------

98f9d9b fix method name
  • Loading branch information
javiereguiluz committed Jun 11, 2020
2 parents 7d625c2 + 98f9d9b commit 951c8b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventSubscriber/CheckRequirementsSubscriber.php
Expand Up @@ -85,7 +85,7 @@ public function handleKernelException(ExceptionEvent $event): void

// Check if SQLite is enabled
if ($isDriverException && $this->isSQLitePlatform() && !\extension_loaded('sqlite3')) {
$event->setException(new \Exception('PHP extension "sqlite3" must be enabled because, by default, the Symfony Demo application uses SQLite to store its information.'));
$event->setThrowable(new \Exception('PHP extension "sqlite3" must be enabled because, by default, the Symfony Demo application uses SQLite to store its information.'));
}
}

Expand Down

0 comments on commit 951c8b3

Please sign in to comment.