Skip to content
Snippets Groups Projects
sophron.install 276 B
Newer Older
<?php

/**
 * @file
 * Sophron - MIME types management API.
 */

/**
 * Implements hook_requirements().
 */
function sophron_requirements($phase) {
  if ($phase === 'runtime') {
    return \Drupal::service('sophron.mime_map.manager')->requirements($phase);
  }
  return [];
}