From 6e987307fc42d6b3ca7d3d94fbf7c0efb56ed841 Mon Sep 17 00:00:00 2001 From: lsmith77 Date: Sun, 25 Dec 2011 14:02:01 +0100 Subject: [PATCH] added forwards compatibility for the Filesystem component --- .../Component/Filesystem/Filesystem.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/Symfony/Component/Filesystem/Filesystem.php 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 +{ +}