Skip to content

Commit

Permalink
moved common configuration classes to a new Config component
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Feb 13, 2011
1 parent ef6e17b commit 6443261
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DependencyInjection/DoctrineExtension.php
Expand Up @@ -14,12 +14,12 @@
use Symfony\Component\DependencyInjection\Alias;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\Loader\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Resource\FileResource;
use Symfony\Component\Config\Resource\FileResource;
use Symfony\Bundle\DoctrineAbstractBundle\DependencyInjection\AbstractDoctrineExtension;
use Symfony\Component\Config\FileLocator;

/**
* DoctrineExtension is an extension for the Doctrine DBAL and ORM library.
Expand Down
Expand Up @@ -18,7 +18,7 @@
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Loader\FileLocator;
use Symfony\Component\Config\FileLocator;

abstract class AbstractDoctrineExtensionTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion Tests/DependencyInjection/XmlDoctrineExtensionTest.php
Expand Up @@ -13,7 +13,7 @@

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\DependencyInjection\Loader\FileLocator;
use Symfony\Component\Config\FileLocator;

class XmlDoctrineExtensionTest extends AbstractDoctrineExtensionTest
{
Expand Down
2 changes: 1 addition & 1 deletion Tests/DependencyInjection/YamlDoctrineExtensionTest.php
Expand Up @@ -13,7 +13,7 @@

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\DependencyInjection\Loader\FileLocator;
use Symfony\Component\Config\FileLocator;

class YamlDoctrineExtensionTest extends AbstractDoctrineExtensionTest
{
Expand Down

0 comments on commit 6443261

Please sign in to comment.