From f457e2dae16dba7092a171b4249b8ebc6ca3ab2d Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Wed, 13 Mar 2024 18:48:50 +0100 Subject: [PATCH] Remove redundant cast --- Trustly/Api/unsigned.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Trustly/Api/unsigned.php b/Trustly/Api/unsigned.php index c62d6b9..7131ff5 100644 --- a/Trustly/Api/unsigned.php +++ b/Trustly/Api/unsigned.php @@ -141,7 +141,7 @@ public function insertCredentials($request) { * @return boolean indicating wether we have a sessionuuid */ protected function hasSessionUUID() { - return (bool)isset($this->session_uuid); + return isset($this->session_uuid); }