From daeb8d8c86eb7d300112de2648ed084265eb7d04 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 14 Aug 2023 13:21:37 +0200 Subject: [PATCH] Don't accept unused `$e` --- src/VirtualColumn.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VirtualColumn.php b/src/VirtualColumn.php index 9f90c49..fb59f2c 100644 --- a/src/VirtualColumn.php +++ b/src/VirtualColumn.php @@ -82,7 +82,7 @@ trait VirtualColumn Crypt::decryptString($value); return true; - } catch (DecryptException $e) { + } catch (DecryptException) { return false; } }