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.
|
|
<?php
namespace App\JsonRpc;
use App\Service\v3\Interfaces\FeiePrintServiceInterface;use Hyperf\RpcServer\Annotation\RpcService;
use Hyperf\Di\Annotation\Inject;/** * @RpcService(name="FeieService", protocol="jsonrpc-http", server="jsonrpc-http", publishTo="") * Class FeieService * @package App\JsonRpc */class FeieService implements PrintServiceInterface{ /** * @Inject * @var FeiePrintServiceInterface */ private $feieprintService;
public function doPrint($oid) { // TODO: Implement doPrint() method.
return $this->feieprintService->feiePrint($oid);
}}
|