Files
Chamilo/vendor/knplabs/gaufrette/src/Gaufrette/Adapter/MetadataSupporter.php
2025-08-14 22:41:49 +02:00

25 lines
412 B
PHP

<?php
namespace Gaufrette\Adapter;
/**
* Interface which add supports for metadata.
*
* @author Leszek Prabucki <leszek.prabucki@gmail.com>
*/
interface MetadataSupporter
{
/**
* @param string $key
* @param array $content
*/
public function setMetadata($key, $content);
/**
* @param string $key
*
* @return array
*/
public function getMetadata($key);
}