You are here

ReplicationServiceProvider.php in Replication 8.2

Namespace

Drupal\replication

File

src/ReplicationServiceProvider.php
View source
<?php

namespace Drupal\replication;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceProviderInterface;

/**
 * Replication container service provider.
 */
class ReplicationServiceProvider implements ServiceProviderInterface {

  /**
   * {@inheritdoc}
   */
  public function register(ContainerBuilder $container) {
    $container
      ->addCompilerPass(new RegisterSerializerCompilerPass());
  }

}

Classes

Namesort descending Description
ReplicationServiceProvider Replication container service provider.