22 lines
202 B
PHP
22 lines
202 B
PHP
<?php
|
|
|
|
|
|
namespace Server\SInterface;
|
|
|
|
|
|
/**
|
|
* Interface OnPipeMessageInterface
|
|
* @package Server\SInterface
|
|
*/
|
|
interface OnPipeMessageInterface
|
|
{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function process(): void;
|
|
|
|
|
|
|
|
}
|