Skip to content

Commit 4db28b7

Browse files
committed
introduce Propel\Bundle\PropelBundle namespace
1 parent b50691f commit 4db28b7

96 files changed

Lines changed: 360 additions & 427 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Command/AbstractCommand.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,16 @@
77
*
88
* @license MIT License
99
*/
10-
11-
namespace Propel\PropelBundle\Command;
10+
namespace Propel\Bundle\PropelBundle\Command;
1211

1312
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
1413
use Symfony\Component\Console\Input\InputInterface;
1514
use Symfony\Component\Console\Output\OutputInterface;
1615
use Symfony\Component\Filesystem\Filesystem;
1716
use Symfony\Component\Finder\Finder;
18-
use Symfony\Component\HttpKernel\KernelInterface;
1917
use Symfony\Component\HttpKernel\Bundle\Bundle;
2018
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
19+
use Symfony\Component\HttpKernel\KernelInterface;
2120

2221
/**
2322
* Wrapper for Propel commands.

Command/BuildCommand.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@
77
*
88
* @license MIT License
99
*/
10-
11-
namespace Propel\PropelBundle\Command;
12-
13-
use Propel\PropelBundle\Command\AbstractCommand;
10+
namespace Propel\Bundle\PropelBundle\Command;
1411

1512
use Symfony\Component\Console\Input\ArrayInput;
16-
use Symfony\Component\Console\Input\InputOption;
1713
use Symfony\Component\Console\Input\InputInterface;
14+
use Symfony\Component\Console\Input\InputOption;
1815
use Symfony\Component\Console\Output\OutputInterface;
19-
use Symfony\Component\Console\Output\Output;
2016

2117
/**
2218
* BuildCommand.

Command/DatabaseCreateCommand.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77
*
88
* @license MIT License
99
*/
10+
namespace Propel\Bundle\PropelBundle\Command;
1011

11-
namespace Propel\PropelBundle\Command;
12-
13-
use Propel\PropelBundle\Command\AbstractCommand;
1412
use Symfony\Component\Console\Input\InputInterface;
15-
use Symfony\Component\Console\Output\OutputInterface;
1613
use Symfony\Component\Console\Input\InputOption;
14+
use Symfony\Component\Console\Output\OutputInterface;
1715

1816
/**
1917
* DatabaseCreateCommand class.

Command/DatabaseDropCommand.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77
*
88
* @license MIT License
99
*/
10+
namespace Propel\Bundle\PropelBundle\Command;
1011

11-
namespace Propel\PropelBundle\Command;
12-
13-
use Propel\PropelBundle\Command\AbstractCommand;
1412
use Symfony\Component\Console\Input\InputInterface;
15-
use Symfony\Component\Console\Output\OutputInterface;
1613
use Symfony\Component\Console\Input\InputOption;
14+
use Symfony\Component\Console\Output\OutputInterface;
1715

1816
/**
1917
* DatabaseDropCommand class.

Command/FixturesDumpCommand.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@
77
*
88
* @license MIT License
99
*/
10+
namespace Propel\Bundle\PropelBundle\Command;
1011

11-
namespace Propel\PropelBundle\Command;
12-
13-
use Propel\PropelBundle\Command\AbstractCommand;
14-
use Propel\PropelBundle\DataFixtures\Dumper\YamlDataDumper;
15-
use Symfony\Component\Console\Input\InputOption;
12+
use Propel\Bundle\PropelBundle\DataFixtures\Dumper\YamlDataDumper;
1613
use Symfony\Component\Console\Input\InputInterface;
14+
use Symfony\Component\Console\Input\InputOption;
1715
use Symfony\Component\Console\Output\OutputInterface;
1816
use Symfony\Component\Filesystem\Filesystem;
1917

Command/FixturesLoadCommand.php

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,18 @@
77
*
88
* @license MIT License
99
*/
10+
namespace Propel\Bundle\PropelBundle\Command;
1011

11-
namespace Propel\PropelBundle\Command;
12-
13-
use Symfony\Component\Console\Input\InputOption;
12+
use Propel\Bundle\PropelBundle\DataFixtures\Loader\XmlDataLoader;
13+
use Propel\Bundle\PropelBundle\DataFixtures\Loader\YamlDataLoader;
1414
use Symfony\Component\Console\Input\InputArgument;
1515
use Symfony\Component\Console\Input\InputInterface;
16+
use Symfony\Component\Console\Input\InputOption;
1617
use Symfony\Component\Console\Output\OutputInterface;
1718
use Symfony\Component\Filesystem\Filesystem;
1819
use Symfony\Component\Finder\Finder;
1920
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
2021

21-
use Propel\PropelBundle\Command\AbstractCommand;
22-
use Propel\PropelBundle\DataFixtures\Loader\YamlDataLoader;
23-
use Propel\PropelBundle\DataFixtures\Loader\XmlDataLoader;
24-
2522
/**
2623
* FixturesLoadCommand
2724
*

Command/FormGenerateCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
*
88
* @license MIT License
99
*/
10-
11-
namespace Propel\PropelBundle\Command;
10+
namespace Propel\Bundle\PropelBundle\Command;
1211

1312
use Symfony\Component\Console\Input\InputArgument;
1413
use Symfony\Component\Console\Input\InputInterface;

Command/GeneratorAwareCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
*
88
* @license MIT License
99
*/
10-
11-
namespace Propel\PropelBundle\Command;
10+
namespace Propel\Bundle\PropelBundle\Command;
1211

1312
use Symfony\Component\Console\Input\InputInterface;
1413
use Symfony\Component\Console\Output\OutputInterface;

Command/GraphvizGenerateCommand.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77
*
88
* @license MIT License
99
*/
10+
namespace Propel\Bundle\PropelBundle\Command;
1011

11-
namespace Propel\PropelBundle\Command;
12-
13-
use Propel\PropelBundle\Command\AbstractCommand;
1412
use Symfony\Component\Console\Input\InputInterface;
1513
use Symfony\Component\Console\Output\OutputInterface;
1614

Command/MigrationGenerateDiffCommand.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77
*
88
* @license MIT License
99
*/
10+
namespace Propel\Bundle\PropelBundle\Command;
1011

11-
namespace Propel\PropelBundle\Command;
12-
13-
use Propel\PropelBundle\Command\AbstractCommand;
1412
use Symfony\Component\Console\Input\InputInterface;
1513
use Symfony\Component\Console\Input\InputOption;
1614
use Symfony\Component\Console\Output\OutputInterface;

0 commit comments

Comments
 (0)