From fc81bed7172732870c3c5cfcd21aea510f6da8eb Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Mon, 7 Dec 2020 21:08:58 +0400 Subject: [PATCH] [BridgeAbstract] Correct getIcon method --- lib/BridgeAbstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index c8ad79c5..b77af16b 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -268,7 +268,7 @@ abstract class BridgeAbstract implements BridgeInterface { /** {@inheritdoc} */ public function getIcon(){ - return ''; + return static::URI . '/favicon.ico'; } /** {@inheritdoc} */