浏览代码

added forwards compatibility for the Filesystem component

lsmith77 13 年之前
父节点
当前提交
6e987307fc
共有 1 个文件被更改,包括 23 次插入0 次删除
  1. 23 0
      src/Symfony/Component/Filesystem/Filesystem.php

+ 23 - 0
src/Symfony/Component/Filesystem/Filesystem.php

@@ -0,0 +1,23 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * 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
+{
+}