16 lines
84 B
PHP
16 lines
84 B
PHP
<?php
|
|
|
|
|
|
namespace Rpc;
|
|
|
|
|
|
interface IProducer
|
|
{
|
|
|
|
|
|
|
|
public function getConfig();
|
|
|
|
|
|
}
|