added forwards compatibility for the Filesystem component

This commit is contained in:
lsmith77 2011-12-25 14:02:01 +01:00
parent bebdd07f41
commit 6e987307fc
1 changed files with 23 additions and 0 deletions

View File

@ -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
{
}