2007-05-29 10:35:27 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-01-26 10:15:07 +01:00
|
|
|
* EGroupware API: VFS - stream wrapper interface
|
2007-05-29 10:35:27 +02:00
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @subpackage vfs
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2015-01-26 10:15:07 +01:00
|
|
|
use EGroupware\Api\Vfs;
|
|
|
|
|
2007-05-29 10:35:27 +02:00
|
|
|
/**
|
2015-01-26 10:15:07 +01:00
|
|
|
* @deprecated use EGroupware\Api\Vfs\StreamWrapperIface
|
2007-05-29 10:35:27 +02:00
|
|
|
*/
|
2015-01-26 10:15:07 +01:00
|
|
|
interface iface_stream_wrapper extends Vfs\StreamWrapperIface {}
|