for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ublaboo\Anabelle\Markdown\Macros\Utils;
final class FileHash
{
public static function md5File(string $destination): string
return md5_file($destination);
}