<?php /** * This file is part of the PHP Generics package. * * @package Generics */ namespace Generics\Streams; /** * This interface describes a socket stream for both input and output * * @author Maik Greubel <greubel@nkey.de> */ interface SocketStream extends InputOutputStream { }
info at phpclasses dot org