mirror of
https://codeberg.org/icewind/streams.git
synced 2026-06-03 16:44:07 +02:00
13 lines
313 B
PHP
13 lines
313 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Robin Appelman <robin@icewind.nl>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace Icewind\Streams\Tests;
|
|
|
|
class DirectoryWrapperNull extends \Icewind\Streams\DirectoryWrapper {
|
|
public static function wrap($source) {
|
|
return self::wrapSource($source);
|
|
}
|
|
}
|