15 lines
91 B
PHP
15 lines
91 B
PHP
<?php
|
|
|
|
|
|
namespace Rpc;
|
|
|
|
|
|
interface IProducer
|
|
{
|
|
|
|
|
|
public function initClient(): array;
|
|
|
|
|
|
}
|