You are here

function service_container_stream_wrappers_alter in Service Container 7.2

Same name and namespace in other branches
  1. 7 service_container.module \service_container_stream_wrappers_alter()

Implements hook_stream_wrappers_alter().

File

./service_container.module, line 13
Main module file for the service_container module.

Code

function service_container_stream_wrappers_alter(&$wrappers) {
  if (class_exists('ServiceContainer')) {
    ServiceContainer::init();
  }
}