Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6213fde

Browse filesBrowse files
committed
renamed Symfony\Framework to Symfony\Bundle
For existing Symfony2 applications, references to Symfony\Framework are found in the main Kernel class (registerBundles() and registerBundleDirs()), and in all Controller classes. You also need to change the console script.
1 parent 9133b9e commit 6213fde
Copy full SHA for 6213fde

File tree

Expand file treeCollapse file tree

195 files changed

+270
-270
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

195 files changed

+270
-270
lines changed

‎src/Symfony/Framework/DoctrineBundle/Command/ClearMetadataCacheDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/ClearMetadataCacheDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ClearMetadataCacheDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputOption;
66
use Symfony\Components\Console\Input\InputInterface;
@@ -20,7 +20,7 @@
2020
* Command to clear the metadata cache of the various cache drivers.
2121
*
2222
* @package Symfony
23-
* @subpackage Framework_DoctrineBundle
23+
* @subpackage Bundle_DoctrineBundle
2424
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2525
* @author Jonathan H. Wage <jonwage@gmail.com>
2626
*/

‎src/Symfony/Framework/DoctrineBundle/Command/ClearQueryCacheDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/ClearQueryCacheDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ClearQueryCacheDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputOption;
66
use Symfony\Components\Console\Input\InputInterface;
@@ -20,7 +20,7 @@
2020
* Command to clear the query cache of the various cache drivers.
2121
*
2222
* @package Symfony
23-
* @subpackage Framework_DoctrineBundle
23+
* @subpackage Bundle_DoctrineBundle
2424
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2525
* @author Jonathan H. Wage <jonwage@gmail.com>
2626
*/

‎src/Symfony/Framework/DoctrineBundle/Command/ClearResultCacheDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/ClearResultCacheDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ClearResultCacheDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputOption;
66
use Symfony\Components\Console\Input\InputInterface;
@@ -20,7 +20,7 @@
2020
* Command to clear the result cache of the various cache drivers.
2121
*
2222
* @package Symfony
23-
* @subpackage Framework_DoctrineBundle
23+
* @subpackage Bundle_DoctrineBundle
2424
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2525
* @author Jonathan H. Wage <jonwage@gmail.com>
2626
*/

‎src/Symfony/Framework/DoctrineBundle/Command/ConvertDoctrine1SchemaDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/ConvertDoctrine1SchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ConvertDoctrine1SchemaDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -28,7 +28,7 @@
2828
* Convert a Doctrine 1 schema to Doctrine 2 mapping files
2929
*
3030
* @package Symfony
31-
* @subpackage Framework_DoctrineBundle
31+
* @subpackage Bundle_DoctrineBundle
3232
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3333
* @author Jonathan H. Wage <jonwage@gmail.com>
3434
*/

‎src/Symfony/Framework/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ConvertMappingDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -23,7 +23,7 @@
2323
* formats.
2424
*
2525
* @package Symfony
26-
* @subpackage Framework_DoctrineBundle
26+
* @subpackage Bundle_DoctrineBundle
2727
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2828
* @author Jonathan H. Wage <jonwage@gmail.com>
2929
*/

‎src/Symfony/Framework/DoctrineBundle/Command/CreateDatabaseDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/CreateDatabaseDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/CreateDatabaseDoctrineCommand.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
77
use Symfony\Components\Console\Input\InputInterface;
88
use Symfony\Components\Console\Output\OutputInterface;
99
use Symfony\Components\Console\Output\Output;
10-
use Symfony\Framework\FoundationBundle\Util\Filesystem;
10+
use Symfony\Bundle\FoundationBundle\Util\Filesystem;
1111
use Doctrine\Common\Cli\Configuration;
1212
use Doctrine\Common\Cli\CliController as DoctrineCliController;
1313
use Doctrine\DBAL\Connection;
@@ -25,7 +25,7 @@
2525
* Database tool allows you to easily drop and create your configured databases.
2626
*
2727
* @package Symfony
28-
* @subpackage Framework_DoctrineBundle
28+
* @subpackage Bundle_DoctrineBundle
2929
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3030
* @author Jonathan H. Wage <jonwage@gmail.com>
3131
*/

‎src/Symfony/Framework/DoctrineBundle/Command/CreateSchemaDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/CreateSchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/CreateSchemaDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Command to create the database schema for a set of classes based on their mappings.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Command/DoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/DoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/DoctrineCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

5-
use Symfony\Framework\FoundationBundle\Command\Command;
5+
use Symfony\Bundle\FoundationBundle\Command\Command;
66
use Symfony\Components\Console\Input\ArrayInput;
77
use Symfony\Components\Console\Input\InputArgument;
88
use Symfony\Components\Console\Input\InputOption;
99
use Symfony\Components\Console\Input\InputInterface;
1010
use Symfony\Components\Console\Output\OutputInterface;
1111
use Symfony\Components\Console\Output\Output;
12-
use Symfony\Framework\FoundationBundle\Console\Application;
12+
use Symfony\Bundle\FoundationBundle\Console\Application;
1313
use Symfony\Foundation\Bundle\Bundle;
1414
use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper;
1515
use Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper;
@@ -31,7 +31,7 @@
3131
* Base class for Doctrine console commands to extend from.
3232
*
3333
* @package Symfony
34-
* @subpackage Framework_DoctrineBundle
34+
* @subpackage Bundle_DoctrineBundle
3535
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3636
*/
3737
abstract class DoctrineCommand extends Command

‎src/Symfony/Framework/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
77
use Symfony\Components\Console\Input\InputInterface;
88
use Symfony\Components\Console\Output\OutputInterface;
99
use Symfony\Components\Console\Output\Output;
10-
use Symfony\Framework\FoundationBundle\Util\Filesystem;
10+
use Symfony\Bundle\FoundationBundle\Util\Filesystem;
1111
use Doctrine\Common\Cli\Configuration;
1212
use Doctrine\Common\Cli\CliController as DoctrineCliController;
1313
use Doctrine\DBAL\Connection;
@@ -25,7 +25,7 @@
2525
* Database tool allows you to easily drop and create your configured databases.
2626
*
2727
* @package Symfony
28-
* @subpackage Framework_DoctrineBundle
28+
* @subpackage Bundle_DoctrineBundle
2929
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3030
* @author Jonathan H. Wage <jonwage@gmail.com>
3131
*/

‎src/Symfony/Framework/DoctrineBundle/Command/DropSchemaDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/DropSchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/DropSchemaDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Command to drop the database schema for a set of classes based on their mappings.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/EnsureProductionSettingsDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Ensure the Doctrine ORM is configured properly for a production environment.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -23,7 +23,7 @@
2323
* Generate entity classes from mapping information
2424
*
2525
* @package Symfony
26-
* @subpackage Framework_DoctrineBundle
26+
* @subpackage Bundle_DoctrineBundle
2727
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2828
* @author Jonathan H. Wage <jonwage@gmail.com>
2929
*/

‎src/Symfony/Framework/DoctrineBundle/Command/GenerateEntityDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntityDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntityDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -24,7 +24,7 @@
2424
* Initialize a new Doctrine entity inside a bundle.
2525
*
2626
* @package Symfony
27-
* @subpackage Framework_DoctrineBundle
27+
* @subpackage Bundle_DoctrineBundle
2828
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2929
* @author Jonathan H. Wage <jonwage@gmail.com>
3030
*/

‎src/Symfony/Framework/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/GenerateProxiesDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Generate the Doctrine ORM entity proxies to your cache directory.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Command/GenerateRepositoriesDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/GenerateRepositoriesDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/GenerateRepositoriesDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputOption;
66
use Symfony\Components\Console\Input\InputInterface;
@@ -20,7 +20,7 @@
2020
* Command to generate repository classes for mapping information.
2121
*
2222
* @package Symfony
23-
* @subpackage Framework_DoctrineBundle
23+
* @subpackage Bundle_DoctrineBundle
2424
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2525
* @author Jonathan H. Wage <jonwage@gmail.com>
2626
*/

‎src/Symfony/Framework/DoctrineBundle/Command/ImportMappingDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/ImportMappingDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ImportMappingDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -27,7 +27,7 @@
2727
* Import Doctrine ORM metadata mapping information from an existing database.
2828
*
2929
* @package Symfony
30-
* @subpackage Framework_DoctrineBundle
30+
* @subpackage Bundle_DoctrineBundle
3131
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3232
* @author Jonathan H. Wage <jonwage@gmail.com>
3333
*/

‎src/Symfony/Framework/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
77
use Symfony\Components\Console\Input\InputInterface;
88
use Symfony\Components\Console\Output\OutputInterface;
99
use Symfony\Components\Console\Output\Output;
1010
use Symfony\Components\Finder\Finder;
11-
use Symfony\Framework\FoundationBundle\Util\Filesystem;
11+
use Symfony\Bundle\FoundationBundle\Util\Filesystem;
1212
use Doctrine\Common\Cli\Configuration;
1313
use Doctrine\Common\Cli\CliController as DoctrineCliController;
1414
use Doctrine\ORM\EntityManager;
@@ -27,7 +27,7 @@
2727
* Load data fixtures from bundles.
2828
*
2929
* @package Symfony
30-
* @subpackage Framework_DoctrineBundle
30+
* @subpackage Bundle_DoctrineBundle
3131
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
3232
* @author Jonathan H. Wage <jonwage@gmail.com>
3333
*/

‎src/Symfony/Framework/DoctrineBundle/Command/RunDqlDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/RunDqlDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/RunDqlDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Execute a Doctrine DQL query and output the results.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Command/RunSqlDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/RunSqlDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/RunSqlDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Execute a SQL query and output the results.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Command/UpdateSchemaDoctrineCommand.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Command/UpdateSchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/UpdateSchemaDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Command;
3+
namespace Symfony\Bundle\DoctrineBundle\Command;
44

55
use Symfony\Components\Console\Input\InputArgument;
66
use Symfony\Components\Console\Input\InputOption;
@@ -22,7 +22,7 @@
2222
* Command to update the database schema for a set of classes based on their mappings.
2323
*
2424
* @package Symfony
25-
* @subpackage Framework_DoctrineBundle
25+
* @subpackage Bundle_DoctrineBundle
2626
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2727
* @author Jonathan H. Wage <jonwage@gmail.com>
2828
*/

‎src/Symfony/Framework/DoctrineBundle/Controller/DoctrineController.php renamed to ‎src/Symfony/Bundle/DoctrineBundle/Controller/DoctrineController.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Controller/DoctrineController.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Symfony\Framework\DoctrineBundle\Controller;
3+
namespace Symfony\Bundle\DoctrineBundle\Controller;
44

5-
use Symfony\Framework\FoundationBundle\Controller;
5+
use Symfony\Bundle\FoundationBundle\Controller;
66

77
/*
88
* This file is part of the Symfony framework.
@@ -17,7 +17,7 @@
1717
* Doctrine ORM controller gives you access to entity managers and DQL queries.
1818
*
1919
* @package Symfony
20-
* @subpackage Framework_DoctrineBundle
20+
* @subpackage Bundle_DoctrineBundle
2121
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
2222
* @author Jonathan H. Wage <jonwage@gmail.com>
2323
*/

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.