13 lines
206 B
PHP
13 lines
206 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace KbAntoraImporter\Import;
|
|
|
|
final class Checksum
|
|
{
|
|
public static function content(string $content): string
|
|
{
|
|
return hash('sha256', $content);
|
|
}
|
|
}
|