maatify / huawei-hms-core
maatify.dev HMS Core handler, known by our team
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/maatify/huawei-hms-core
Requires
- ext-curl: *
- ext-openssl: *
- maatify/logger: ^1.1
README
HuaweiHmsCore
maatify.dev HuaweiHmsCore Handler, known by our team
Installation
composer require maatify/huawei-hms-core
Important
<?php use Maatify\HMS\HMSCoreRequest; /** * Created by Maatify.dev * User: Maatify.dev * Date: 2024-04-29 * Time: 11:19 AM * https://www.Maatify.dev */ class HMSConnector extends HMSCoreRequest { protected string $APP_ID_FROM_CONSOLE = __APP_ID_FROM_CONSOLE__; protected string|int $client_id = __client_id__; protected string $client_credentials = __client_credentials__; public function CallHMSByToken(string $title, string $message, string $token) { return $this ->SetTitle($title) ->SetMessage($message) ->SetTokens([$token]) ->Load(); } }