Files
nhgooi.nl/vendor/league/flysystem/src/ChecksumProvider.php
2023-11-14 16:54:35 +01: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;
}