From 32d65384fe353301ba42437e9ec91a81cb60190a Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 5 Dec 2024 21:03:00 +1300 Subject: [PATCH] Fix stan --- tests/Messaging/Adapter/Push/Base.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/Messaging/Adapter/Push/Base.php b/tests/Messaging/Adapter/Push/Base.php index a6a0754..4ebcf8f 100644 --- a/tests/Messaging/Adapter/Push/Base.php +++ b/tests/Messaging/Adapter/Push/Base.php @@ -3,16 +3,18 @@ namespace Utopia\Tests\Adapter\Push; use Utopia\Messaging\Adapter; -use Utopia\Messaging\Adapter\Push\APNS as APNSAdapter; use Utopia\Messaging\Messages\Push; use Utopia\Messaging\Priority; use Utopia\Tests\Adapter\Base as TestBase; abstract class Base extends TestBase { - private Adapter $adapter; + protected Adapter $adapter; - protected abstract function getTo(): array; + /** + * @return array + */ + abstract protected function getTo(): array; public function testSend(): void {