diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php new file mode 100644 index 0000000000..b95b7019b9 --- /dev/null +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -0,0 +1,23 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Filesystem; + +use Symfony\Component\HttpKernel\Util\Filesystem as BaseFilesystem; + +/** + * Filesystem. + * + * Added for forwards compatibility with Symfony2.1 + */ +class Filesystem extends BaseFilesystem +{ +}