home/mip/mip/vendor/league/flysystem/src/ChecksumProvider.php 0000644 00000000443 15152066276 0020434 0 ustar 00 <?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;
}