PHP Classes

File: src/Generics/Streams/Interceptor/AbstractStreamInterceptor.php

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

Contents

Class file image Download
<?php
/**
 * This file is part of the PHP Generics package.
 *
 * @package Generics
 */
namespace Generics\Streams\Interceptor;

/**
 * This abstract class provides a basic stream interceptor
 *
 * @author Maik Greubel <greubel@nkey.de>
 */
abstract class AbstractStreamInterceptor implements StreamInterceptor
{

   
/**
     *
     * {@inheritdoc}
     * @see \Generics\Streams\Interceptor\StreamInterceptor::onClose()
     */
   
public function onClose()
    {
    }

   
/**
     *
     * {@inheritdoc}
     * @see \Generics\Streams\Interceptor\StreamInterceptor::onCreate()
     */
   
public function onCreate()
    {
    }
}