From 30dab814b0406e2c16a8c5f02e3f9a8254ea2e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hampus=20Iggstro=CC=88m?= Date: Wed, 29 Jan 2020 13:34:59 +0100 Subject: [PATCH] Added missing return type --- Twig/PusherExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Twig/PusherExtension.php b/Twig/PusherExtension.php index e4b1915..96a6cf3 100644 --- a/Twig/PusherExtension.php +++ b/Twig/PusherExtension.php @@ -29,7 +29,7 @@ public function __construct(Pusher $pusher) /** * @return array */ - public function getGlobals() + public function getGlobals(): array { return [ 'pusher_key' => $this->pusher->getSettings()['auth_key'],