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 da9f36c

Browse filesBrowse files
committed
renamed Symfony\Foundation to Symfony\Framework
In existing applications, you need to updated the autoload.php file, the XXXKernel file and all XXXBundle classes.
1 parent 15d4398 commit da9f36c
Copy full SHA for da9f36c

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

45 files changed

+66
-66
lines changed

‎autoload.php.dist

Copy file name to clipboardExpand all lines: autoload.php.dist
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
require_once __DIR__.'/src/Symfony/Foundation/UniversalClassLoader.php';
3+
require_once __DIR__.'/src/Symfony/Framework/UniversalClassLoader.php';
44

5-
use Symfony\Foundation\UniversalClassLoader;
5+
use Symfony\Framework\UniversalClassLoader;
66

77
$loader = new UniversalClassLoader();
88
$loader->registerNamespaces(array(

‎src/Symfony/Bundle/DoctrineBundle/Command/DoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/DoctrineCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Symfony\Components\Console\Output\OutputInterface;
1111
use Symfony\Components\Console\Output\Output;
1212
use Symfony\Bundle\FrameworkBundle\Console\Application;
13-
use Symfony\Foundation\Bundle\Bundle;
13+
use Symfony\Framework\Bundle\Bundle;
1414
use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper;
1515
use Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper;
1616
use Doctrine\ORM\Tools\DisconnectedClassMetadataFactory;

‎src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Symfony\Components\Console\Input\InputInterface;
88
use Symfony\Components\Console\Output\OutputInterface;
99
use Symfony\Components\Console\Output\Output;
10-
use Symfony\Foundation\Bundle\Bundle;
10+
use Symfony\Framework\Bundle\Bundle;
1111
use Doctrine\ORM\Tools\EntityGenerator;
1212

1313
/*

‎src/Symfony/Bundle/DoctrineBundle/DoctrineBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/DoctrineBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\DoctrineBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Loader\Loader;
88
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;

‎src/Symfony/Bundle/DoctrineMigrationsBundle/DoctrineMigrationsBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineMigrationsBundle/DoctrineMigrationsBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\DoctrineMigrationsBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66

77
/*
88
* This file is part of the Symfony framework.

‎src/Symfony/Bundle/DoctrineMongoDBBundle/DoctrineMongoDBBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineMongoDBBundle/DoctrineMongoDBBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\DoctrineMongoDBBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Loader\Loader;
88
use Symfony\Bundle\DoctrineMongoDBBundle\DependencyInjection\MongoDBExtension;

‎src/Symfony/Bundle/FrameworkBundle/Console/Application.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Console/Application.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Symfony\Components\Console\Input\InputInterface;
77
use Symfony\Components\Console\Input\InputOption;
88
use Symfony\Components\Console\Output\OutputInterface;
9-
use Symfony\Foundation\Kernel;
9+
use Symfony\Framework\Kernel;
1010

1111
/*
1212
* This file is part of the Symfony framework.

‎src/Symfony/Bundle/FrameworkBundle/Console/BootstrapApplication.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Console/BootstrapApplication.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Symfony\Components\Console\Input\InputInterface;
77
use Symfony\Components\Console\Input\InputOption;
88
use Symfony\Components\Console\Output\OutputInterface;
9-
use Symfony\Foundation\Kernel;
9+
use Symfony\Framework\Kernel;
1010
use Symfony\Bundle\FrameworkBundle\Command\InitApplicationCommand;
1111

1212
/*

‎src/Symfony/Bundle/FrameworkBundle/DataCollector/ConfigDataCollector.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/DataCollector/ConfigDataCollector.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\FrameworkBundle\DataCollector;
44

5-
use Symfony\Foundation\Kernel;
5+
use Symfony\Framework\Kernel;
66
use Symfony\Components\HttpKernel\Profiler\DataCollector\DataCollector;
77
use Symfony\Components\DependencyInjection\ContainerInterface;
88

‎src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/FrameworkBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\FrameworkBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Loader\Loader;
88
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;

‎src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/Cache.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/Cache.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require_once __DIR__.'/{{ class }}Kernel.php';
44

5-
use Symfony\Foundation\Cache\Cache;
5+
use Symfony\Framework\Cache\Cache;
66

77
class {{ class }}Cache extends Cache
88
{

‎src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/xml/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
require_once __DIR__.'/../src/autoload.php';
44

5-
use Symfony\Foundation\Kernel;
5+
use Symfony\Framework\Kernel;
66
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader as ContainerLoader;
77
use Symfony\Components\Routing\Loader\XmlFileLoader as RoutingLoader;
88

9-
use Symfony\Foundation\Bundle\KernelBundle;
9+
use Symfony\Framework\Bundle\KernelBundle;
1010
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
1111
use Symfony\Bundle\ZendBundle\ZendBundle;
1212
use Symfony\Bundle\DoctrineBundle\DoctrineBundle;

‎src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yaml/Cache.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yaml/Cache.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require_once __DIR__.'/{{ class }}Kernel.php';
44

5-
use Symfony\Foundation\Cache\Cache;
5+
use Symfony\Framework\Cache\Cache;
66

77
class {{ class }}Cache extends Cache
88
{

‎src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yaml/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yaml/Kernel.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
require_once __DIR__.'/../src/autoload.php';
44

5-
use Symfony\Foundation\Kernel;
5+
use Symfony\Framework\Kernel;
66
use Symfony\Components\DependencyInjection\Loader\YamlFileLoader as ContainerLoader;
77
use Symfony\Components\Routing\Loader\YamlFileLoader as RoutingLoader;
88

9-
use Symfony\Foundation\Bundle\KernelBundle;
9+
use Symfony\Framework\Bundle\KernelBundle;
1010
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
1111
use Symfony\Bundle\ZendBundle\ZendBundle;
1212
use Symfony\Bundle\DoctrineBundle\DoctrineBundle;

‎src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Bundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/bundle/Bundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace {{ namespace }}\{{ bundle }};
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77

88
class {{ bundle }} extends Bundle

‎src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/exception.txt.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Resources/views/Exception/exception.txt.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
<?php endforeach; ?>
1111
<?php endif; ?>
12-
[symfony] v. <?php echo \Symfony\Foundation\Kernel::VERSION ?> (symfony-project.org)
12+
[symfony] v. <?php echo \Symfony\Framework\Kernel::VERSION ?> (symfony-project.org)
1313
[PHP] v. <?php echo PHP_VERSION ?>

‎src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\FrameworkBundle\Test;
44

5-
use Symfony\Foundation\Test\WebTestCase as BaseWebTestCase;
5+
use Symfony\Framework\Test\WebTestCase as BaseWebTestCase;
66
use Symfony\Components\Finder\Finder;
77
use Symfony\Components\HttpFoundation\Response;
88

‎src/Symfony/Bundle/PropelBundle/PropelBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/PropelBundle/PropelBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\PropelBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Loader\Loader;
88
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;

‎src/Symfony/Bundle/SwiftmailerBundle/SwiftmailerBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SwiftmailerBundle/SwiftmailerBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\SwiftmailerBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Loader\Loader;
88
use Symfony\Bundle\SwiftmailerBundle\DependencyInjection\SwiftmailerExtension;

‎src/Symfony/Bundle/TwigBundle/TwigBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/TwigBundle/TwigBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\TwigBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Loader\Loader;
88
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;

‎src/Symfony/Bundle/ZendBundle/ZendBundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/ZendBundle/ZendBundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Symfony\Bundle\ZendBundle;
44

5-
use Symfony\Foundation\Bundle\Bundle;
5+
use Symfony\Framework\Bundle\Bundle;
66
use Symfony\Components\DependencyInjection\ContainerInterface;
77
use Symfony\Components\DependencyInjection\Reference;
88
use Symfony\Components\DependencyInjection\Loader\Loader;

‎src/Symfony/Components/HttpKernel/Client.php

Copy file name to clipboardExpand all lines: src/Symfony/Components/HttpKernel/Client.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function getScript($request)
6969
$kernel = serialize($this->kernel);
7070
$request = serialize($request);
7171

72-
$r = new \ReflectionClass('\\Symfony\\Foundation\\UniversalClassLoader');
72+
$r = new \ReflectionClass('\\Symfony\\Framework\\UniversalClassLoader');
7373
$requirePath = $r->getFileName();
7474

7575
$symfonyPath = realpath(__DIR__.'/../../..');
@@ -79,7 +79,7 @@ protected function getScript($request)
7979
8080
require_once '$requirePath';
8181
82-
\$loader = new Symfony\Foundation\UniversalClassLoader();
82+
\$loader = new Symfony\Framework\UniversalClassLoader();
8383
\$loader->registerNamespaces(array('Symfony' => '$symfonyPath'));
8484
\$loader->register();
8585

‎src/Symfony/Components/HttpKernel/Test/WebTestCase.php

Copy file name to clipboardExpand all lines: src/Symfony/Components/HttpKernel/Test/WebTestCase.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ abstract class WebTestCase extends \PHPUnit_Framework_TestCase
3030
* @param Boolean $debug The debug flag
3131
* @param array $server An array of server parameters
3232
*
33-
* @return Symfony\Foundation\Client A Client instance
33+
* @return Symfony\Framework\Client A Client instance
3434
*/
3535
abstract public function createClient(array $options = array(), array $server = array());
3636
}

‎src/Symfony/Foundation/Bundle/Bundle.php renamed to ‎src/Symfony/Framework/Bundle/Bundle.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Bundle/Bundle.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation\Bundle;
3+
namespace Symfony\Framework\Bundle;
44

55
use Symfony\Components\DependencyInjection\ContainerInterface;
66
use Symfony\Components\Console\Application;

‎src/Symfony/Foundation/Bundle/BundleInterface.php renamed to ‎src/Symfony/Framework/Bundle/BundleInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Bundle/BundleInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation\Bundle;
3+
namespace Symfony\Framework\Bundle;
44

55
use Symfony\Components\DependencyInjection\ContainerInterface;
66

‎src/Symfony/Foundation/Cache/Cache.php renamed to ‎src/Symfony/Framework/Cache/Cache.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Cache/Cache.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation\Cache;
3+
namespace Symfony\Framework\Cache;
44

55
use Symfony\Components\HttpKernel\HttpKernelInterface;
66
use Symfony\Components\HttpKernel\Cache\Cache as BaseCache;

‎src/Symfony/Foundation/ClassCollectionLoader.php renamed to ‎src/Symfony/Framework/ClassCollectionLoader.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/ClassCollectionLoader.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation;
3+
namespace Symfony\Framework;
44

55
/*
66
* This file is part of the Symfony framework.

‎src/Symfony/Foundation/Client.php renamed to ‎src/Symfony/Framework/Client.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Client.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\Foundation;
3+
namespace Symfony\Framework;
44

55
use Symfony\Components\HttpKernel\HttpKernelInterface;
66
use Symfony\Components\HttpKernel\Client as BaseClient;
@@ -55,7 +55,7 @@ public function getContainer()
5555
/**
5656
* Returns the kernel.
5757
*
58-
* @return Symfony\Foundation\Kernel
58+
* @return Symfony\Framework\Kernel
5959
*/
6060
public function getKernel()
6161
{

‎src/Symfony/Foundation/Debug/ErrorException.php renamed to ‎src/Symfony/Framework/Debug/ErrorException.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Debug/ErrorException.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation\Debug;
3+
namespace Symfony\Framework\Debug;
44

55
/*
66
* This file is part of the Symfony framework.

‎src/Symfony/Foundation/Debug/ErrorHandler.php renamed to ‎src/Symfony/Framework/Debug/ErrorHandler.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Debug/ErrorHandler.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation\Debug;
3+
namespace Symfony\Framework\Debug;
44

55
/*
66
* This file is part of the Symfony framework.

‎src/Symfony/Foundation/Debug/EventDispatcher.php renamed to ‎src/Symfony/Framework/Debug/EventDispatcher.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Debug/EventDispatcher.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Symfony\Foundation\Debug;
3+
namespace Symfony\Framework\Debug;
44

5-
use Symfony\Foundation\EventDispatcher as BaseEventDispatcher;
5+
use Symfony\Framework\EventDispatcher as BaseEventDispatcher;
66
use Symfony\Components\EventDispatcher\EventDispatcherInterface;
77
use Symfony\Components\EventDispatcher\Event;
88
use Symfony\Components\HttpKernel\LoggerInterface;

‎src/Symfony/Foundation/DependencyInjection/KernelExtension.php renamed to ‎src/Symfony/Framework/DependencyInjection/KernelExtension.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/DependencyInjection/KernelExtension.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation\DependencyInjection;
3+
namespace Symfony\Framework\DependencyInjection;
44

55
use Symfony\Components\DependencyInjection\Loader\LoaderExtension;
66
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;

‎src/Symfony/Foundation/EventDispatcher.php renamed to ‎src/Symfony/Framework/EventDispatcher.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/EventDispatcher.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation;
3+
namespace Symfony\Framework;
44

55
use Symfony\Components\EventDispatcher\EventDispatcher as BaseEventDispatcher;
66
use Symfony\Components\EventDispatcher\Event;

‎src/Symfony/Foundation/Kernel.php renamed to ‎src/Symfony/Framework/Kernel.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Kernel.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Symfony\Foundation;
3+
namespace Symfony\Framework;
44

55
use Symfony\Components\DependencyInjection\ContainerInterface;
66
use Symfony\Components\DependencyInjection\Builder;

‎src/Symfony/Foundation/KernelBundle.php renamed to ‎src/Symfony/Framework/KernelBundle.php

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

3-
namespace Symfony\Foundation;
3+
namespace Symfony\Framework;
44

5-
use Symfony\Foundation\Bundle\Bundle;
6-
use Symfony\Foundation\ClassCollectionLoader;
7-
use Symfony\Foundation\DependencyInjection\KernelExtension;
5+
use Symfony\Framework\Bundle\Bundle;
6+
use Symfony\Framework\ClassCollectionLoader;
7+
use Symfony\Framework\DependencyInjection\KernelExtension;
88
use Symfony\Components\DependencyInjection\ContainerInterface;
99
use Symfony\Components\DependencyInjection\Loader\Loader;
1010
use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;

‎src/Symfony/Foundation/Resources/bin/packager.php renamed to ‎src/Symfony/Framework/Resources/bin/packager.php

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Resources/bin/packager.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
* with this source code in the file LICENSE.
1212
*/
1313

14-
use Symfony\Foundation\UniversalClassLoader;
15-
use Symfony\Foundation\ClassCollectionLoader;
14+
use Symfony\Framework\UniversalClassLoader;
15+
use Symfony\Framework\ClassCollectionLoader;
1616

1717
$loader = new UniversalClassLoader();
1818
$loader->registerNamespaces(array('Symfony' => __DIR__.'/../../../..'));

‎src/Symfony/Foundation/Resources/config/debug.xml renamed to ‎src/Symfony/Framework/Resources/config/debug.xml

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Resources/config/debug.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xsi:schemaLocation="http://www.symfony-project.org/schema/dic/services http://www.symfony-project.org/schema/dic/services/services-1.0.xsd">
66

77
<parameters>
8-
<parameter key="debug.event_dispatcher.class">Symfony\Foundation\Debug\EventDispatcher</parameter>
8+
<parameter key="debug.event_dispatcher.class">Symfony\Framework\Debug\EventDispatcher</parameter>
99
</parameters>
1010

1111
<services>

‎src/Symfony/Foundation/Resources/config/services.xml renamed to ‎src/Symfony/Framework/Resources/config/services.xml

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Resources/config/services.xml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
xsi:schemaLocation="http://www.symfony-project.org/schema/dic/services http://www.symfony-project.org/schema/dic/services/services-1.0.xsd">
66

77
<parameters>
8-
<parameter key="event_dispatcher.class">Symfony\Foundation\EventDispatcher</parameter>
8+
<parameter key="event_dispatcher.class">Symfony\Framework\EventDispatcher</parameter>
99
<parameter key="http_kernel.class">Symfony\Components\HttpKernel\HttpKernel</parameter>
1010
<parameter key="request.class">Symfony\Components\HttpFoundation\Request</parameter>
1111
<parameter key="response.class">Symfony\Components\HttpFoundation\Response</parameter>
12-
<parameter key="error_handler.class">Symfony\Foundation\Debug\ErrorHandler</parameter>
12+
<parameter key="error_handler.class">Symfony\Framework\Debug\ErrorHandler</parameter>
1313
<parameter key="error_handler.level">null</parameter>
1414
<parameter key="error_handler.enable">true</parameter>
1515
<parameter key="kernel.include_core_classes">true</parameter>

‎src/Symfony/Foundation/Resources/config/test.xml renamed to ‎src/Symfony/Framework/Resources/config/test.xml

Copy file name to clipboardExpand all lines: src/Symfony/Framework/Resources/config/test.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xsi:schemaLocation="http://www.symfony-project.org/schema/dic/services http://www.symfony-project.org/schema/dic/services/services-1.0.xsd">
66

77
<parameters>
8-
<parameter key="test.client.class">Symfony\Foundation\Client</parameter>
8+
<parameter key="test.client.class">Symfony\Framework\Client</parameter>
99
<parameter key="test.client.parameters" type="collection"></parameter>
1010
<parameter key="test.client.history.class">Symfony\Components\BrowserKit\History</parameter>
1111
<parameter key="test.client.cookiejar.class">Symfony\Components\BrowserKit\CookieJar</parameter>

0 commit comments

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