Skip to content

Commit

Permalink
fix merge (bis)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jan 24, 2022
1 parent 6ca1013 commit b9de28b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Fixtures/config/inline_binding.php
Expand Up @@ -13,11 +13,11 @@
->autoconfigure()
->autowire()
->tag('t', ['a' => 'b'])
->bind(Foo::class, ref('bar'))
->bind(Foo::class, service('bar'))
->bind('iterable $foo', tagged_iterator('foo'))
->bind('object $baz', inline_service('Baz'))
->public();

$s->set(Foo::class)->args([ref('bar')])->public();
$s->set(Foo::class)->args([service('bar')])->public();
$s->set('bar', Foo::class)->call('setFoo')->autoconfigure(false);
};

0 comments on commit b9de28b

Please sign in to comment.