From 7049086fef52a864a8af96b0e218a3c1a4b8223f Mon Sep 17 00:00:00 2001 From: Thomas Klein Date: Mon, 6 Jun 2022 12:13:21 +0200 Subject: [PATCH] false if false ;) --- Plugin/Saleable/CanShowPrice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugin/Saleable/CanShowPrice.php b/Plugin/Saleable/CanShowPrice.php index db44a62..14ded50 100644 --- a/Plugin/Saleable/CanShowPrice.php +++ b/Plugin/Saleable/CanShowPrice.php @@ -41,6 +41,6 @@ private function canShowPrice(bool $canShowPrice): bool { return $canShowPrice ? $this->canShowPrice->canShowPrice((int) $this->httpContext->getValue(CustomerContext::CONTEXT_GROUP)) - : $canShowPrice; + : false; } }