Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T-005: Adjust Code Syntax #11

Merged
merged 1 commit into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Api/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ public function __construct() {
* The response from the API.
*/
public function sendRequest(
string $method, string $endpoint, array $data = []
string $method,
string $endpoint,
array $data = []
): mixed {
$timestamp = gmdate('c');
$authKey = $this->generateAuthKey($timestamp);
Expand Down
45 changes: 33 additions & 12 deletions src/Service/StatusCheckService.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,39 @@

use QuickTopUpAPI\Api\ApiClient;

class StatusCheckService
{
private $apiClient;
/**
* Class StatusCheckService
*
* @package QuickTopUpAPI\Service
*
* A simple service to check the status of a transaction.
*/
class StatusCheckService {
private ApiClient $apiClient;

public function __construct(ApiClient $apiClient)
{
$this->apiClient = $apiClient;
}
/**
* StatusCheckService constructor.
*
* @param ApiClient $apiClient
* The API client.
*/
public function __construct(ApiClient $apiClient) {
$this->apiClient = $apiClient;
}

/**
* Check the status of a transaction.
*
* @param string $ctid
* The CTID.
*
* @return array
* The transaction status.
*/
public function checkStatus($ctid) {
$endpoint = 'WSGetTransactionStatus';

return $this->apiClient->sendRequest('POST', $endpoint, ['CTID' => $ctid]);
}

public function checkStatus($ctid)
{
$endpoint = 'WSGetTransactionStatus';
return $this->apiClient->sendRequest('POST', $endpoint, ['CTID' => $ctid]);
}
}
Loading