Skip to content

Commit 818a332

Browse files
committed
[Component] Moved Filesystem class to its own component
1 parent 10c60ab commit 818a332

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/services.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parameters>
88
<parameter key="event_dispatcher.class">Symfony\Bundle\FrameworkBundle\ContainerAwareEventDispatcher</parameter>
99
<parameter key="http_kernel.class">Symfony\Bundle\FrameworkBundle\HttpKernel</parameter>
10-
<parameter key="filesystem.class">Symfony\Component\HttpKernel\Util\Filesystem</parameter>
10+
<parameter key="filesystem.class">Symfony\Component\Filesystem\Filesystem</parameter>
1111
<parameter key="cache_warmer.class">Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate</parameter>
1212
<parameter key="cache_clearer.class">Symfony\Component\HttpKernel\CacheClearer\ChainCacheClearer</parameter>
1313
<parameter key="file_locator.class">Symfony\Component\HttpKernel\Config\FileLocator</parameter>

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/WebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

14-
use Symfony\Component\HttpKernel\Util\Filesystem;
1514
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase as BaseWebTestCase;
15+
use Symfony\Component\Filesystem\Filesystem;
1616
use Symfony\Component\HttpKernel\Kernel;
1717

1818
class WebTestCase extends BaseWebTestCase

src/Symfony/Bundle/FrameworkBundle/Tests/Functional/app/AppKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
$dir = dirname($dir);
3131
}
3232

33-
use Symfony\Component\HttpKernel\Util\Filesystem;
3433
use Symfony\Component\Config\Loader\LoaderInterface;
34+
use Symfony\Component\Filesystem\Filesystem;
3535
use Symfony\Component\HttpKernel\Kernel;
3636

3737
/**

src/Symfony/Bundle/FrameworkBundle/Tests/Translation/TranslatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Bundle\FrameworkBundle\Translation\Translator;
1515
use Symfony\Component\Translation\MessageCatalogue;
16-
use Symfony\Component\HttpKernel\Util\Filesystem;
16+
use Symfony\Component\Filesystem\Filesystem;
1717
use Symfony\Component\Translation\MessageSelector;
1818

1919
class TranslatorTest extends \PHPUnit_Framework_TestCase

src/Symfony/Bundle/SecurityBundle/Tests/Functional/WebTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Bundle\SecurityBundle\Tests\Functional;
1313

14-
use Symfony\Component\HttpKernel\Util\Filesystem;
1514
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase as BaseWebTestCase;
15+
use Symfony\Component\Filesystem\Filesystem;
1616
use Symfony\Component\HttpKernel\Kernel;
1717

1818
class WebTestCase extends BaseWebTestCase

src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/AppKernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
$dir = dirname($dir);
3131
}
3232

33-
use Symfony\Component\HttpKernel\Util\Filesystem;
3433
use Symfony\Component\Config\Loader\LoaderInterface;
34+
use Symfony\Component\Filesystem\Filesystem;
3535
use Symfony\Component\HttpKernel\Kernel;
3636

3737
/**

src/Symfony/Component/HttpKernel/Util/Filesystem.php renamed to src/Symfony/Component/Filesystem/Filesystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\HttpKernel\Util;
12+
namespace Symfony\Component\Filesystem;
1313

1414
/**
1515
* Provides basic utility to manipulate the file system.

0 commit comments

Comments
 (0)