PHP Classes

File: src/Generics/Streams/InputOutputStream.php

Recommend this page to a friend!
  Classes of Maik Greubel   PHP Generics   src/Generics/Streams/InputOutputStream.php   Download  
File: src/Generics/Streams/InputOutputStream.php
Role: Class source
Content type: text/plain
Description: Input/output stream interface
Class: PHP Generics
Framework for accessing streams, sockets and logs
Author: By
Last change: Update of src/Generics/Streams/InputOutputStream.php
Date: 2 months ago
Size: 371 bytes
 

Contents

Class file image Download
<?php

/**
 * This file is part of the PHP Generics package.
 *
 * @package Generics
 */
namespace Generics\Streams;

/**
 * This interface describes the implementation of an input-output-stream by combining the
 * InputStream and OutputStream interfaces.
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
interface InputOutputStream extends InputStream, OutputStream
{
}