initial version

This commit is contained in:
Robin Appelman 2014-07-23 23:02:10 +02:00
commit d54615fd3a
11 changed files with 494 additions and 0 deletions

15
src/NullWrapper.php Normal file
View file

@ -0,0 +1,15 @@
<?php
/**
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Licensed under the MIT license:
* http://opensource.org/licenses/MIT
*/
namespace Icewind\Streams;
class NullWrapper extends Wrapper {
public function stream_open() {
$this->loadContext('null');
return true;
}
}