Skip to content

Commit 7a87492

Browse files
authored
bug #878 Fix dependency injection namespace (loic425)
This PR was merged into the 1.11 branch. Discussion ---------- | Q | A | --------------- | ----- | Bug fix? | yes (but not released in 1.10) | New feature? | no | BC breaks? | no | Deprecations? | no | Related tickets | | License | MIT Commits ------- 6dff96b Fix dependency injection namespace
2 parents 46a2b13 + 6dff96b commit 7a87492

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Bundle/SyliusResourceBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
use Sylius\Bundle\ResourceBundle\DependencyInjection\Compiler\TwigPass;
2828
use Sylius\Bundle\ResourceBundle\DependencyInjection\Compiler\WinzouStateMachinePass;
2929
use Sylius\Bundle\ResourceBundle\DependencyInjection\PagerfantaExtension;
30-
use Sylius\Resource\Symfony\DependencyIjection\Compiler\DisableMetadataCachePass;
30+
use Sylius\Resource\Symfony\DependencyInjection\Compiler\DisableMetadataCachePass;
3131
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
3232
use Symfony\Component\DependencyInjection\ContainerBuilder;
3333
use Symfony\Component\HttpKernel\Bundle\Bundle;

src/Component/src/Symfony/DependencyIjection/Compiler/DisableMetadataCachePass.php renamed to src/Component/src/Symfony/DependencyInjection/Compiler/DisableMetadataCachePass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
declare(strict_types=1);
1313

14-
namespace Sylius\Resource\Symfony\DependencyIjection\Compiler;
14+
namespace Sylius\Resource\Symfony\DependencyInjection\Compiler;
1515

1616
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1717
use Symfony\Component\DependencyInjection\ContainerBuilder;

src/Component/tests/Symfony/DependencyInjection/Compiler/DisableMetadataCachePassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
namespace Sylius\Component\Resource\tests\Symfony\DependencyInjection\Compiler;
1515

1616
use Matthias\SymfonyDependencyInjectionTest\PhpUnit\AbstractCompilerPassTestCase;
17-
use Sylius\Resource\Symfony\DependencyIjection\Compiler\DisableMetadataCachePass;
17+
use Sylius\Resource\Symfony\DependencyInjection\Compiler\DisableMetadataCachePass;
1818
use Symfony\Component\DependencyInjection\ContainerBuilder;
1919
use Symfony\Component\DependencyInjection\Definition;
2020

0 commit comments

Comments
 (0)