| 1 | <?php |
||
| 16 | class Chatwork |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var ClientInterface |
||
| 20 | */ |
||
| 21 | private $client; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Chatwork constructor. |
||
| 25 | * |
||
| 26 | * @param ClientInterface $client |
||
| 27 | */ |
||
| 28 | public function __construct(ClientInterface $client) |
||
| 32 | |||
| 33 | public function me(): Me |
||
| 37 | |||
| 38 | public function my(): My |
||
| 42 | |||
| 43 | public function contacts(): Contacts |
||
| 47 | |||
| 48 | public function rooms(): Rooms |
||
| 52 | |||
| 53 | public static function create(string $token, string $version = 'v2', array $httpOptions = []): self |
||
| 57 | } |
||
| 58 |