aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-14 12:30:05 +0000
committerMario <mario@mariovavti.com>2024-03-14 12:30:05 +0000
commita9d4adaf2360f7d02dace4434e4e62d6ce072327 (patch)
tree95871468b237e222e0c39d94a583b06ef661f1f0 /vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php
parent70dfce356b949dce00dba534536be994b1d7761d (diff)
downloadvolse-hubzilla-a9d4adaf2360f7d02dace4434e4e62d6ce072327.tar.gz
volse-hubzilla-a9d4adaf2360f7d02dace4434e4e62d6ce072327.tar.bz2
volse-hubzilla-a9d4adaf2360f7d02dace4434e4e62d6ce072327.zip
Revert "next try to use the streams php-jcs library until the floats issue will be fixed upstream. see here for reference https://codeberg.org/streams/streams/issues/151"
This reverts commit 70dfce356b949dce00dba534536be994b1d7761d.
Diffstat (limited to 'vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php')
-rw-r--r--vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php b/vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php
new file mode 100644
index 000000000..68b1c50c9
--- /dev/null
+++ b/vendor/mmccook/php-json-canonicalization-scheme/src/JsonCanonicalizatorFactory.php
@@ -0,0 +1,13 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Mmccook\JsonCanonicalizator;
+
+class JsonCanonicalizatorFactory
+{
+ public static function getInstance(): JsonCanonicalizator
+ {
+ return new JsonCanonicalizator();
+ }
+}