Kwesi Banson Jnr d22ca2954b Initial commit
2026-02-19 07:04:15 +00:00

15 lines
291 B
PHP

<?php
namespace League\Flysystem;
interface ChecksumProvider
{
/**
* @return string MD5 hash of the file contents
*
* @throws UnableToProvideChecksum
* @throws ChecksumAlgoIsNotSupported
*/
public function checksum(string $path, Config $config): string;
}