You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
665 B
26 lines
665 B
<?php
|
|
|
|
|
|
namespace App\JsonRpc;
|
|
use Hyperf\RpcServer\Annotation\RpcService;
|
|
|
|
use Hyperf\Di\Annotation\Inject;
|
|
/**
|
|
* @RpcService(name="BadgeService", protocol="jsonrpc-http", server="jsonrpc-http", publishTo="")
|
|
* Class BadgeService
|
|
* @package App\JsonRpc
|
|
*/
|
|
class BadgeService implements BadgeServiceInterface
|
|
{
|
|
/**
|
|
* @Inject
|
|
* @var \App\Service\v3\Interfaces\BadgeServiceInterface
|
|
*/
|
|
protected $badgeService;
|
|
public function doByOrder($userId, $storeIds, $globalOrderId, $orderState)
|
|
{
|
|
// TODO: Implement doByOrder() method.
|
|
$this->badgeService->doByOrder($userId, $storeIds, $globalOrderId, $orderState);
|
|
|
|
}
|
|
}
|