File "ChecksumProvider.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/league/flysystem/src/UnixVisibility/ChecksumProvider.php
File size: 291 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}