You are here

ContainerRebuildTestServiceProvider.php in Drupal 10

File

core/modules/system/tests/modules/container_rebuild_test/src/ContainerRebuildTestServiceProvider.php
View source
<?php

namespace Drupal\container_rebuild_test;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;
class ContainerRebuildTestServiceProvider implements ServiceModifierInterface {

  /**
   * {@inheritdoc}
   */
  public function alter(ContainerBuilder $container) {
    $count = $container
      ->get('state')
      ->get('container_rebuild_test.count', 0);
    $container
      ->get('state')
      ->set('container_rebuild_test.count', ++$count);
  }

}