You are here

CacheFactoryInterface.php in Drupal driver for SQL Server and SQL Azure 8.2

File

drivers/lib/Drupal/Driver/Database/sqlsrv/Component/CacheFactoryInterface.php
View source
<?php

namespace Drupal\Driver\Database\sqlsrv\Component;

interface CacheFactoryInterface {

  /**
   * Get a cache backend for a specific binary.
   *
   * @param  string $bin
   *
   * @return CacheInterface
   */
  public function get($bin);

}

Interfaces