Skip to content

Commit c81330c

Browse files
committed
Remove trailing space in generated comments
1 parent 96f97f8 commit c81330c

File tree

705 files changed

+2490
-2490
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

705 files changed

+2490
-2490
lines changed

scripts/convert-bson-corpus-tests.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -146,50 +146,50 @@ function getParamsForValid(array $test, array $case)
146146
$code .= sprintf('$convertedExtJson = %s;', var_export($convertedExtJson, true)) . "\n";
147147
}
148148

149-
$code .= "\n// Canonical BSON -> Native -> Canonical BSON \n";
149+
$code .= "\n// Canonical BSON -> Native -> Canonical BSON\n";
150150
$code .= 'echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";' . "\n";
151151
$expect .= $expectedCanonicalBson . "\n";
152152

153-
$code .= "\n// Canonical BSON -> Canonical extJSON \n";
153+
$code .= "\n// Canonical BSON -> Canonical extJSON\n";
154154
$code .= 'echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";' . "\n";;
155155
$expect .= $expectedCanonicalExtJson . "\n";
156156

157157
if (isset($relaxedExtJson)) {
158-
$code .= "\n// Canonical BSON -> Relaxed extJSON \n";
158+
$code .= "\n// Canonical BSON -> Relaxed extJSON\n";
159159
$code .= 'echo json_canonicalize(toRelaxedExtendedJSON($canonicalBson)), "\n";' . "\n";;
160160
$expect .= $expectedRelaxedExtJson . "\n";
161161
}
162162

163163
if (!$lossy) {
164-
$code .= "\n// Canonical extJSON -> Canonical BSON \n";
164+
$code .= "\n// Canonical extJSON -> Canonical BSON\n";
165165
$code .= 'echo bin2hex(fromJSON($canonicalExtJson)), "\n";' . "\n";
166166
$expect .= $expectedCanonicalBson . "\n";
167167
}
168168

169169
if (isset($degenerateBson)) {
170-
$code .= "\n// Degenerate BSON -> Native -> Canonical BSON \n";
170+
$code .= "\n// Degenerate BSON -> Native -> Canonical BSON\n";
171171
$code .= 'echo bin2hex(fromPHP(toPHP($degenerateBson))), "\n";' . "\n";
172172
$expect .= $expectedCanonicalBson . "\n";
173173

174-
$code .= "\n// Degenerate BSON -> Canonical extJSON \n";
174+
$code .= "\n// Degenerate BSON -> Canonical extJSON\n";
175175
$code .= 'echo json_canonicalize(toCanonicalExtendedJSON($degenerateBson)), "\n";' . "\n";;
176176
$expect .= $expectedCanonicalExtJson . "\n";
177177

178178
if (isset($relaxedExtJson)) {
179-
$code .= "\n// Degenerate BSON -> Relaxed extJSON \n";
179+
$code .= "\n// Degenerate BSON -> Relaxed extJSON\n";
180180
$code .= 'echo json_canonicalize(toRelaxedExtendedJSON($degenerateBson)), "\n";' . "\n";;
181181
$expect .= $expectedRelaxedExtJson . "\n";
182182
}
183183
}
184184

185185
if (isset($degenerateExtJson) && !$lossy) {
186-
$code .= "\n// Degenerate extJSON -> Canonical BSON \n";
186+
$code .= "\n// Degenerate extJSON -> Canonical BSON\n";
187187
$code .= 'echo bin2hex(fromJSON($degenerateExtJson)), "\n";' . "\n";
188188
$expect .= $expectedCanonicalBson . "\n";
189189
}
190190

191191
if (isset($relaxedExtJson)) {
192-
$code .= "\n// Relaxed extJSON -> BSON -> Relaxed extJSON \n";
192+
$code .= "\n// Relaxed extJSON -> BSON -> Relaxed extJSON\n";
193193
$code .= 'echo json_canonicalize(toRelaxedExtendedJSON(fromJSON($relaxedExtJson))), "\n";' . "\n";
194194
$expect .= $expectedRelaxedExtJson . "\n";
195195
}

tests/bson-corpus/array-valid-001.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('0D000000046100050000000000');
1313
$canonicalExtJson = '{"a" : []}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/array-valid-002.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('140000000461000C0000001030000A0000000000');
1313
$canonicalExtJson = '{"a" : [{"$numberInt": "10"}]}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/array-valid-003.phpt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ $canonicalBson = hex2bin('140000000461000C0000001030000A0000000000');
1313
$degenerateBson = hex2bin('130000000461000B00000010000A0000000000');
1414
$canonicalExtJson = '{"a" : [{"$numberInt": "10"}]}';
1515

16-
// Canonical BSON -> Native -> Canonical BSON
16+
// Canonical BSON -> Native -> Canonical BSON
1717
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1818

19-
// Canonical BSON -> Canonical extJSON
19+
// Canonical BSON -> Canonical extJSON
2020
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2121

22-
// Canonical extJSON -> Canonical BSON
22+
// Canonical extJSON -> Canonical BSON
2323
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2424

25-
// Degenerate BSON -> Native -> Canonical BSON
25+
// Degenerate BSON -> Native -> Canonical BSON
2626
echo bin2hex(fromPHP(toPHP($degenerateBson))), "\n";
2727

28-
// Degenerate BSON -> Canonical extJSON
28+
// Degenerate BSON -> Canonical extJSON
2929
echo json_canonicalize(toCanonicalExtendedJSON($degenerateBson)), "\n";
3030

3131
?>

tests/bson-corpus/array-valid-004.phpt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ $canonicalBson = hex2bin('140000000461000C0000001030000A0000000000');
1313
$degenerateBson = hex2bin('150000000461000D000000106162000A0000000000');
1414
$canonicalExtJson = '{"a" : [{"$numberInt": "10"}]}';
1515

16-
// Canonical BSON -> Native -> Canonical BSON
16+
// Canonical BSON -> Native -> Canonical BSON
1717
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1818

19-
// Canonical BSON -> Canonical extJSON
19+
// Canonical BSON -> Canonical extJSON
2020
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2121

22-
// Canonical extJSON -> Canonical BSON
22+
// Canonical extJSON -> Canonical BSON
2323
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2424

25-
// Degenerate BSON -> Native -> Canonical BSON
25+
// Degenerate BSON -> Native -> Canonical BSON
2626
echo bin2hex(fromPHP(toPHP($degenerateBson))), "\n";
2727

28-
// Degenerate BSON -> Canonical extJSON
28+
// Degenerate BSON -> Canonical extJSON
2929
echo json_canonicalize(toCanonicalExtendedJSON($degenerateBson)), "\n";
3030

3131
?>

tests/bson-corpus/array-valid-005.phpt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ $canonicalBson = hex2bin('1b000000046100130000001030000a000000103100140000000000
1313
$degenerateBson = hex2bin('1b000000046100130000001030000a000000103000140000000000');
1414
$canonicalExtJson = '{"a" : [{"$numberInt": "10"}, {"$numberInt": "20"}]}';
1515

16-
// Canonical BSON -> Native -> Canonical BSON
16+
// Canonical BSON -> Native -> Canonical BSON
1717
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1818

19-
// Canonical BSON -> Canonical extJSON
19+
// Canonical BSON -> Canonical extJSON
2020
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2121

22-
// Canonical extJSON -> Canonical BSON
22+
// Canonical extJSON -> Canonical BSON
2323
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2424

25-
// Degenerate BSON -> Native -> Canonical BSON
25+
// Degenerate BSON -> Native -> Canonical BSON
2626
echo bin2hex(fromPHP(toPHP($degenerateBson))), "\n";
2727

28-
// Degenerate BSON -> Canonical extJSON
28+
// Degenerate BSON -> Canonical extJSON
2929
echo json_canonicalize(toCanonicalExtendedJSON($degenerateBson)), "\n";
3030

3131
?>

tests/bson-corpus/binary-valid-001.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('0D000000057800000000000000');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "", "subType" : "00"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-002.phpt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ $canonicalBson = hex2bin('0D000000057800000000000000');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "", "subType" : "00"}}}';
1414
$degenerateExtJson = '{"x" : { "$binary" : {"subType" : "00", "base64" : ""}}}';
1515

16-
// Canonical BSON -> Native -> Canonical BSON
16+
// Canonical BSON -> Native -> Canonical BSON
1717
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1818

19-
// Canonical BSON -> Canonical extJSON
19+
// Canonical BSON -> Canonical extJSON
2020
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2121

22-
// Canonical extJSON -> Canonical BSON
22+
// Canonical extJSON -> Canonical BSON
2323
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2424

25-
// Degenerate extJSON -> Canonical BSON
25+
// Degenerate extJSON -> Canonical BSON
2626
echo bin2hex(fromJSON($degenerateExtJson)), "\n";
2727

2828
?>

tests/bson-corpus/binary-valid-003.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('0F0000000578000200000000FFFF00');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "//8=", "subType" : "00"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-004.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('0F0000000578000200000001FFFF00');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "//8=", "subType" : "01"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-005.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('13000000057800060000000202000000FFFF00');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "//8=", "subType" : "02"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-006.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('1D000000057800100000000373FFD26444B34C6990E8E7D1DFC035D400');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "c//SZESzTGmQ6OfR38A11A==", "subType" : "03"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-007.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('1D000000057800100000000473FFD26444B34C6990E8E7D1DFC035D400');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "c//SZESzTGmQ6OfR38A11A==", "subType" : "04"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-008.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('1D000000057800100000000573FFD26444B34C6990E8E7D1DFC035D400');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "c//SZESzTGmQ6OfR38A11A==", "subType" : "05"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-009.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('0F0000000578000200000080FFFF00');
1313
$canonicalExtJson = '{"x" : { "$binary" : {"base64" : "//8=", "subType" : "80"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-010.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('1F000000037800170000000224747970650007000000737472696E67000000');
1313
$canonicalExtJson = '{"x" : { "$type" : "string"}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/binary-valid-011.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('180000000378001000000010247479706500020000000000');
1313
$canonicalExtJson = '{"x" : { "$type" : {"$numberInt": "2"}}}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/boolean-valid-001.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('090000000862000100');
1313
$canonicalExtJson = '{"b" : true}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

tests/bson-corpus/boolean-valid-002.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ require_once __DIR__ . '/../utils/tools.php';
1212
$canonicalBson = hex2bin('090000000862000000');
1313
$canonicalExtJson = '{"b" : false}';
1414

15-
// Canonical BSON -> Native -> Canonical BSON
15+
// Canonical BSON -> Native -> Canonical BSON
1616
echo bin2hex(fromPHP(toPHP($canonicalBson))), "\n";
1717

18-
// Canonical BSON -> Canonical extJSON
18+
// Canonical BSON -> Canonical extJSON
1919
echo json_canonicalize(toCanonicalExtendedJSON($canonicalBson)), "\n";
2020

21-
// Canonical extJSON -> Canonical BSON
21+
// Canonical extJSON -> Canonical BSON
2222
echo bin2hex(fromJSON($canonicalExtJson)), "\n";
2323

2424
?>

0 commit comments

Comments
 (0)