Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

AbstractServiceConfigurator.php

Namespace

Symfony\Component\DependencyInjection\Loader\Configurator

File

vendor/symfony/dependency-injection/Loader/Configurator/AbstractServiceConfigurator.php

View source
<?php


/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace Symfony\Component\DependencyInjection\Loader\Configurator;

use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
abstract class AbstractServiceConfigurator extends AbstractConfigurator {
    private array $defaultTags = [];
    public function __construct(ServicesConfigurator $parent, Definition $definition, ?string $id = null, array $defaultTags = []) {
        $this->definition = $definition;
        $this->defaultTags = $defaultTags;
    }
    public function __destruct() {
        // default tags should be added last
        foreach ($this->defaultTags as $name => $attributes) {
            foreach ($attributes as $attribute) {
                $this->definition
                    ->addTag($name, $attribute);
            }
        }
        $this->defaultTags = [];
    }
    
    /**
     * Registers a service.
     */
    public final function set(?string $id, ?string $class = null) : ServiceConfigurator {
        $this->__destruct();
        return $this->parent
            ->set($id, $class);
    }
    
    /**
     * Creates an alias.
     */
    public final function alias(string $id, string $referencedId) : AliasConfigurator {
        $this->__destruct();
        return $this->parent
            ->alias($id, $referencedId);
    }
    
    /**
     * Registers a PSR-4 namespace using a glob pattern.
     */
    public final function load(string $namespace, string $resource) : PrototypeConfigurator {
        $this->__destruct();
        return $this->parent
            ->load($namespace, $resource);
    }
    
    /**
     * Gets an already defined service definition.
     *
     * @throws ServiceNotFoundException if the service definition does not exist
     */
    public final function get(string $id) : ServiceConfigurator {
        $this->__destruct();
        return $this->parent
            ->get($id);
    }
    
    /**
     * Removes an already defined service definition or alias.
     */
    public final function remove(string $id) : ServicesConfigurator {
        $this->__destruct();
        return $this->parent
            ->remove($id);
    }
    
    /**
     * Registers a stack of decorator services.
     *
     * @param InlineServiceConfigurator[]|ReferenceConfigurator[] $services
     */
    public final function stack(string $id, array $services) : AliasConfigurator {
        $this->__destruct();
        return $this->parent
            ->stack($id, $services);
    }
    
    /**
     * Registers a service.
     */
    public final function __invoke(string $id, ?string $class = null) : ServiceConfigurator {
        $this->__destruct();
        return $this->parent
            ->set($id, $class);
    }

}

Classes

Title Deprecated Summary
AbstractServiceConfigurator

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal