Skip to content

Commit

Permalink
BLT-5231: Update default exception handling to remove use of deprecat…
Browse files Browse the repository at this point in the history
…ed class
  • Loading branch information
tomdearden committed Jan 11, 2024
1 parent 8564362 commit 1166d24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions settings/default.local.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
*/

use Acquia\Blt\Robo\Common\EnvironmentDetector;
use Drupal\Component\Assertion\Handle;

$db_name = '${drupal.db.database}';

Expand Down Expand Up @@ -46,7 +45,7 @@
* @see https://wiki.php.net/rfc/expectations
*/
assert_options(ASSERT_ACTIVE, TRUE);
Handle::register();
assert_options(ASSERT_EXCEPTION, TRUE);

/**
* Show all error messages, with backtrace information.
Expand Down

0 comments on commit 1166d24

Please sign in to comment.