Victor-Drom-测试/评论服务客户端

示例.com 客户端

1.0.3 2021-07-18 04:15 UTC

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);