api/symfony/Component/DependencyInjection/Compiler/RemovePrivateAliasesPass.yaml
2024-09-26 02:03:21 -07:00

45 lines
1.1 KiB
YAML

name: RemovePrivateAliasesPass
class_comment: '# * Remove private aliases from the container. They were only used
to establish
# * dependencies between services, and these dependencies have been resolved in
# * one of the previous passes.
# *
# * @author Johannes M. Schmitt <schmittjoh@gmail.com>'
dependencies:
- name: ContainerBuilder
type: class
source: Symfony\Component\DependencyInjection\ContainerBuilder
properties: []
methods:
- name: process
visibility: public
parameters:
- name: container
comment: '# * Remove private aliases from the container. They were only used to
establish
# * dependencies between services, and these dependencies have been resolved in
# * one of the previous passes.
# *
# * @author Johannes M. Schmitt <schmittjoh@gmail.com>
# */
# class RemovePrivateAliasesPass implements CompilerPassInterface
# {
# /**
# * Removes private aliases from the ContainerBuilder.'
traits:
- Symfony\Component\DependencyInjection\ContainerBuilder
interfaces:
- CompilerPassInterface