2015-06-21 20:43:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace React\Socket;
|
|
|
|
|
|
|
|
use React\Stream\ReadableStreamInterface;
|
|
|
|
use React\Stream\WritableStreamInterface;
|
|
|
|
|
2020-04-21 17:57:36 +02:00
|
|
|
interface ConnectionInterface extends ReadableStreamInterface, WritableStreamInterface {
|
|
|
|
public function getRemoteAddress();
|
2015-06-21 20:43:18 +02:00
|
|
|
}
|