Skip to content

Commit

Permalink
use namespaced service name
Browse files Browse the repository at this point in the history
  • Loading branch information
IndraGunawan authored Nov 29, 2024
1 parent 8a8d394 commit ec3e940
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Icons/config/iconify.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

->set('.ux_icons.iconify', Iconify::class)
->args([
service('cache.ux.icons'),
service('.ux_icons.cache'),
abstract_arg('endpoint'),
service('http_client')->nullOnInvalid(),
])
Expand Down
4 changes: 2 additions & 2 deletions src/Icons/config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@

return static function (ContainerConfigurator $container): void {
$container->services()
->set('cache.ux.icons')
->set('.ux_icons.cache')
->parent('cache.system')
->private()
->tag('cache.pool')

->set('.ux_icons.cache_icon_registry', CacheIconRegistry::class)
->args([
service('.ux_icons.chain_registry'),
service('cache.ux.icons'),
service('.ux_icons.cache'),
])

->set('.ux_icons.local_svg_icon_registry', LocalSvgIconRegistry::class)
Expand Down

0 comments on commit ec3e940

Please sign in to comment.