marketo_ma-8.x-2.x-dev/tests/modules/marketo_mock_client/src/MarketoMockClientServiceProvider.php
tests/modules/marketo_mock_client/src/MarketoMockClientServiceProvider.php
<?php
namespace Drupal\marketo_mock_client;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;
use Symfony\Component\DependencyInjection\Reference;
/**
* Provides an alternative marketo_ma client service implementation.
*/
class MarketoMockClientServiceProvider implements ServiceModifierInterface {
/**
* {@inheritdoc}
*/
public function alter(ContainerBuilder $container) {
$container->getDefinition('marketo_ma.api_client')
->setClass(TestMarketoMaApiClient::class)
->setArguments([new Reference('state')]);
}
}
