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