Skip to content

Commit

Permalink
IBX-1853: Changed services names to FQCN or rebranded ones (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou authored Jan 20, 2022
1 parent 85f9861 commit 0dd32af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bundle/Resources/config/services/command.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ services:

Ibexa\Bundle\FieldTypeMatrix\Command\MigrateLegacyMatrixCommand:
arguments:
- '@ezpublish.persistence.connection'
- '@ibexa.persistence.connection'
tags:
- { name: console.command }
2 changes: 1 addition & 1 deletion src/bundle/Resources/config/services/fieldtype.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
autoconfigure: false
autowire: true
public: true
parent: ezpublish.fieldType
parent: Ibexa\Core\FieldType\FieldType
arguments:
$fieldTypeIdentifier: '%ezplatform.fieldtype.matrix.identifier%'
tags:
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/CoreSetupFactoryTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected function loadCoreSettings(ContainerBuilder $containerBuilder): void
->addMethodCall('connect', [(getenv('CACHE_HOST') ?: '127.0.0.1'), 6379, 2.5]);

$containerBuilder
->register('ezpublish.cache_pool.driver', RedisAdapter::class)
->register('ibexa.cache_pool.driver', RedisAdapter::class)
->setArguments([new Reference('ezpublish.cache_pool.driver.redis'), '', 120]);
}

Expand Down

0 comments on commit 0dd32af

Please sign in to comment.