From d12c092fb534401b563f30b21f57cd31a42f9720 Mon Sep 17 00:00:00 2001 From: William DURAND Date: Sun, 25 Dec 2011 14:21:54 +0100 Subject: [PATCH] Use the new Filesystem component --- Command/AbstractPropelCommand.php | 2 +- Command/BuildSqlCommand.php | 2 +- Command/FixturesLoadCommand.php | 4 ++-- Command/ReverseCommand.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Command/AbstractPropelCommand.php b/Command/AbstractPropelCommand.php index 5f3837f..7625363 100644 --- a/Command/AbstractPropelCommand.php +++ b/Command/AbstractPropelCommand.php @@ -13,9 +13,9 @@ namespace Propel\PropelBundle\Command; use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Finder\Finder; use Symfony\Component\HttpKernel\KernelInterface; -use Symfony\Component\HttpKernel\Util\Filesystem; use Symfony\Component\HttpKernel\Bundle\Bundle; use Symfony\Component\HttpKernel\Bundle\BundleInterface; diff --git a/Command/BuildSqlCommand.php b/Command/BuildSqlCommand.php index 4125f06..5dba350 100644 --- a/Command/BuildSqlCommand.php +++ b/Command/BuildSqlCommand.php @@ -15,8 +15,8 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\Output; +use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Finder\Finder; -use Symfony\Component\HttpKernel\Util\Filesystem; use Propel\PropelBundle\Command\AbstractPropelCommand; diff --git a/Command/FixturesLoadCommand.php b/Command/FixturesLoadCommand.php index 30ae4c4..46f72c1 100644 --- a/Command/FixturesLoadCommand.php +++ b/Command/FixturesLoadCommand.php @@ -14,8 +14,8 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Finder\Finder; -use Symfony\Component\HttpKernel\Util\Filesystem; use Propel\PropelBundle\Command\AbstractPropelCommand; use Propel\PropelBundle\DataFixtures\Loader\YamlDataLoader; @@ -40,7 +40,7 @@ class FixturesLoadCommand extends AbstractPropelCommand private $absoluteFixturesPath = ''; /** * Filesystem for manipulating files - * @var \Symfony\Component\HttpKernel\Util\Filesystem + * @var \Symfony\Component\Filesystem\Filesystem */ private $filesystem = null; diff --git a/Command/ReverseCommand.php b/Command/ReverseCommand.php index b3f0bb6..e3427e5 100644 --- a/Command/ReverseCommand.php +++ b/Command/ReverseCommand.php @@ -14,8 +14,8 @@ use Propel\PropelBundle\Command\AbstractPropelCommand; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Finder\Finder; -use Symfony\Component\HttpKernel\Util\Filesystem; /** * ReverseCommand.