thomxc/guzzleplug
最新稳定版本:0.2
Composer 安装命令:
composer require thomxc/guzzleplug
包简介
Guzzle Bootstrap class for easy
关键字:
README 文档
README
Example
<?php class Service extends GuzzlePlug\GuzzlePlug { public function __construct($url = 'https://api.myservice.com') { $this->url = $url; } public function getRequest() { $response = $this->request('GET', $this->url); if ($this->actualResponse->getStatusCode() == 200) { return $response; } else { throw new Exception('Response status code != 200'); } } }
统计信息
- 总下载量: 2.12k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-28