ServiceProviderBase.php 412 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\Core\DependencyInjection;
  3. /**
  4. * Base service provider implementation.
  5. *
  6. * @ingroup container
  7. */
  8. abstract class ServiceProviderBase implements ServiceProviderInterface, ServiceModifierInterface {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function register(ContainerBuilder $container) {
  13. }
  14. /**
  15. * {@inheritdoc}
  16. */
  17. public function alter(ContainerBuilder $container) {
  18. }
  19. }