Files
StocksNew/vendor/league/flysystem/src/ChecksumProvider.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

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;
}