FileServiceProvider.php

Same filename and directory in other branches
  1. 9 core/modules/file/src/FileServiceProvider.php
  2. 8.9.x core/modules/file/src/FileServiceProvider.php
  3. 11.x core/modules/file/src/FileServiceProvider.php

Namespace

Drupal\file

File

core/modules/file/src/FileServiceProvider.php

View source
<?php

namespace Drupal\file;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;
use Drupal\Core\StackMiddleware\NegotiationMiddleware;

/**
 * Adds 'application/octet-stream' as a known (bin) format.
 */
class FileServiceProvider implements ServiceModifierInterface {
  
  /**
   * {@inheritdoc}
   */
  public function alter(ContainerBuilder $container) {
    if ($container->has('http_middleware.negotiation') && is_a($container->getDefinition('http_middleware.negotiation')
      ->getClass(), NegotiationMiddleware::class, TRUE)) {
      $container->getDefinition('http_middleware.negotiation')
        ->addMethodCall('registerFormat', [
        'bin',
        [
          'application/octet-stream',
        ],
      ]);
    }
  }

}

Classes

Title Deprecated Summary
FileServiceProvider Adds 'application/octet-stream' as a known (bin) format.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.