for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* Copyright (C) 2013 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace Mailgun\Api;
use Mailgun\Assert;
use Mailgun\Model\Stats\AllResponse;
use Mailgun\Model\Stats\TotalResponse;
/**
* @see https://documentation.mailgun.com/en/latest/api-stats.html
* @author Tobias Nyholm <[email protected]>
class Stats extends HttpApi
{
* @return TotalResponse|array
public function total(string $domain, array $params = [])
Assert::stringNotEmpty($domain);
$response = $this->httpGet(sprintf('/v3/%s/stats/total', rawurlencode($domain)), $params);
return $this->hydrateResponse($response, TotalResponse::class);
}