ReplicationServiceProvider.php in Replication 8.2
Namespace
Drupal\replicationFile
src/ReplicationServiceProvider.phpView 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
Name | Description |
---|---|
ReplicationServiceProvider | Replication container service provider. |