blob: 73b25c0864606579036c9129c0dd551bf068bb6f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
declare(strict_types=1);
namespace Mmccook\JsonCanonicalizator;
interface JsonCanonicalizatorInterface
{
public function canonicalize($data, bool $asHex): string;
}
|