11 lines
141 B
PHP
Executable File
11 lines
141 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Rpc;
|
|
|
|
class BaseService
|
|
{
|
|
protected function getResponse()
|
|
{
|
|
return new RpcResponse();
|
|
}
|
|
} |