Laravel AT Protocol Client (alpha & unstable)
at dev 299 B view raw
1<?php 2 3namespace SocialDept\AtpClient\Client\Requests; 4 5use SocialDept\AtpClient\AtpClient; 6 7class Request 8{ 9 /** 10 * The parent AtpClient instance we belong to 11 */ 12 protected AtpClient $atp; 13 14 public function __construct($parent) 15 { 16 $this->atp = $parent->root(); 17 } 18}