for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Kerox\Messenger\Api;
use GuzzleHttp\ClientInterface;
abstract class AbstractApi
{
/**
* @var string
*/
protected $pageToken;
* @var \GuzzleHttp\ClientInterface
protected $client;
* AbstractApi constructor.
public function __construct(string $pageToken, ClientInterface $client)
$this->pageToken = $pageToken;
$this->client = $client;
}