diff options
author | Robin Appelman <robin@icewind.nl> | 2017-01-19 14:41:20 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-01-19 14:41:20 +0100 |
commit | e9badb9f83743dc644e19eef59a76c1691c3b65f (patch) | |
tree | 2431416a1629c8f4880bd5e8e2b7123800dbe9f8 /apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php | |
parent | d5728b3f117ff3b7ab45a4672f4999f7225b875b (diff) | |
download | nextcloud-server-e9badb9f83743dc644e19eef59a76c1691c3b65f.tar.gz nextcloud-server-e9badb9f83743dc644e19eef59a76c1691c3b65f.zip |
Revert "update icewind/streams to 0.5.2"
This reverts commit d5728b3f117ff3b7ab45a4672f4999f7225b875b.
Diffstat (limited to 'apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php')
-rw-r--r-- | apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php b/apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php deleted file mode 100644 index 88af7e17b33..00000000000 --- a/apps/files_external/3rdparty/icewind/streams/src/PathWrapper.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php -/** - * Copyright (c) 2016 Robin Appelman <icewind@owncloud.com> - * This file is licensed under the Licensed under the MIT license: - * http://opensource.org/licenses/MIT - */ - -namespace Icewind\Streams; - -/** - * A string-like object that maps to an existing stream when opened - */ -class PathWrapper extends NullWrapper { - /** - * @param resource $source - * @return Path|string - */ - public static function getPath($source) { - return new Path(__CLASS__, [ - 'null' => [ - 'source' => $source - ] - ]); - } -} |