Add return type to getTelegram - really need to do this everywhere
[SonOfLokstallBot.git] / common.php
index e5424ae..e560659 100644 (file)
@@ -5,7 +5,7 @@ require_once(__DIR__ . '/config.php');
 
 use Telegram\Bot\Api;
 
-function getTelegram() {
+function getTelegram(): \Telegram\Bot\Api {
     STATIC $tg;
     return $tg = $tg ?? new \Telegram\Bot\Api(BOT_TOKEN);
 }