setAutoRetry(true); } /** * Tests the sendContact method. * * @return void */ public function testSendContact(): void { // Execute the method and retrieve the result $result = self::$bot->sendContact( chat_id: TEST_CHAT_ID, phone_number: '18884074747', first_name: 'FBI', ); // Assert that the result is an instance of Message $this->assertInstanceOf(Message::class, $result); } }