You are here

UpdateServiceProvider.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Update/UpdateServiceProvider.php

Namespace

Drupal\Core\Update

File

core/lib/Drupal/Core/Update/UpdateServiceProvider.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Update\UpdateServiceProvider.
 */
namespace Drupal\Core\Update;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;
use Drupal\Core\DependencyInjection\ServiceProviderInterface;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Reference;

/**
 * Ensures for some services that they don't cache.
 */
class UpdateServiceProvider implements ServiceProviderInterface, ServiceModifierInterface {

  /**
   * {@inheritdoc}
   */
  public function register(ContainerBuilder $container) {
    $definition = new Definition('Drupal\\Core\\Cache\\NullBackend', [
      'null',
    ]);
    $container
      ->setDefinition('cache.null', $definition);
  }

  /**
   * {@inheritdoc}
   */
  public function alter(ContainerBuilder $container) {
    $definition = $container
      ->getDefinition('asset.resolver');
    $argument = new Reference('cache.null');
    $definition
      ->replaceArgument(5, $argument);
    $definition = $container
      ->getDefinition('library.discovery.collector');
    $argument = new Reference('cache.null');
    $definition
      ->replaceArgument(0, $argument);
  }

}

Classes

Namesort descending Description
UpdateServiceProvider Ensures for some services that they don't cache.