interface HashableInterface

A filter can implement a hash function

@author Francisco Facioni <fran6co@gmail.com>

Hierarchy

Expanded class hierarchy of HashableInterface

All classes that implement HashableInterface

1 file declares its use of HashableInterface
AssetCache.php in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php, line 19

Namespace

Assetic\Filter
View source
interface HashableInterface {

  /**
   * Generates a hash for the object
   *
   * @return string Object hash
   */
  public function hash();

}

Members

Namesort descending Modifiers Type Description Overrides
HashableInterface::hash public function Generates a hash for the object