You are here

function remote_stream_wrapper_entity_type_alter in Remote Stream Wrapper 8

Implements hook_entity_type_alter().

File

./remote_stream_wrapper.module, line 6

Code

function remote_stream_wrapper_entity_type_alter(&$entity_types) {
  if (isset($entity_types['image_style'])) {
    $entity_types['image_style']
      ->setClass('Drupal\\remote_stream_wrapper\\Entity\\ImageStyle');
  }
}