Remove unused exception variables, now that this is possible with PHP8

This commit is contained in:
Alex Cabal 2023-06-06 21:00:12 -05:00
parent fe16cb3b21
commit 8127f0c7e2
36 changed files with 60 additions and 63 deletions

View file

@ -38,7 +38,7 @@ class NewsletterSubscription extends PropertiesBase{
try{
$this->User = User::GetByEmail($this->User->Email);
}
catch(Exceptions\InvalidUserException $ex){
catch(Exceptions\InvalidUserException){
// User doesn't exist, create the user
$this->User->Create();
}