| Total Complexity | 4 | 
| Total Lines | 40 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 10 | class Drip extends ClientManager  | 
            ||
| 11 | { | 
            ||
| 12 | /** @var string */  | 
            ||
| 13 | protected $accountId;  | 
            ||
| 14 | |||
| 15 | /**  | 
            ||
| 16 | * Drip constructor.  | 
            ||
| 17 | *  | 
            ||
| 18 | * @param string $accountId  | 
            ||
| 19 | * @param string $apiToken  | 
            ||
| 20 | * @param string $userAgent  | 
            ||
| 21 | */  | 
            ||
| 22 | public function __construct(string $accountId, string $apiToken, string $userAgent)  | 
            ||
| 23 |     { | 
            ||
| 24 | parent::__construct($apiToken, $userAgent);  | 
            ||
| 25 | $this->accountId = $accountId;  | 
            ||
| 26 | }  | 
            ||
| 27 | |||
| 28 | /**  | 
            ||
| 29 | * @return Events  | 
            ||
| 30 | */  | 
            ||
| 31 | public function events(): Events  | 
            ||
| 34 | }  | 
            ||
| 35 | |||
| 36 | /**  | 
            ||
| 37 | * @return Subscribers  | 
            ||
| 38 | */  | 
            ||
| 39 | public function subscribers(): Subscribers  | 
            ||
| 40 |     { | 
            ||
| 41 | return new Subscribers($this->getClient(), $this->accountId);  | 
            ||
| 42 | }  | 
            ||
| 43 | |||
| 44 | /**  | 
            ||
| 45 | * @return Accounts  | 
            ||
| 46 | */  | 
            ||
| 47 | public function accounts(): Accounts  | 
            ||
| 50 | }  | 
            ||
| 51 | }  | 
            ||
| 52 |