Victor-Drom-测试 / 评论服务客户端
1.0.3
2021-07-18 04:15 UTC
Requires
- php: >=7.1
- php-curl-class/php-curl-class: ^9.2
Requires (Dev)
- phpunit/phpunit: ^9.3.3
This package is auto-updated.
Last update: 2024-09-29 06:14:31 UTC
README
- 安装:
composer require victor-drom-test/comment-service-client
运行测试
.\vendor\bin\phpunit tests
使用示例
<?php require_once __DIR__ . '/vendor/autoload.php';
/ 获取评论 / $client = new Victor\clients\Example(); $result = $client->getComment(); var_dump($result);
/ 创建评论 / $result = $client->addComment(new Victor\models\Comment('评论名称')); var_dump($result);