We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c0df0 commit 2ae68a0Copy full SHA for 2ae68a0
src/Drivers/YamlDriver.php
@@ -19,7 +19,7 @@ public function serialize($data): string
19
throw new CantBeSerialized('Only strings can be serialized to json');
20
}
21
22
- return Yaml::dump($data);
+ return Yaml::dump($data, PHP_INT_MAX);
23
24
25
public function extension(): string
@@ -30,7 +30,7 @@ public function extension(): string
30
public function match($expected, $actual)
31
{
32
if (is_array($actual)) {
33
- $actual = Yaml::dump($actual);
+ $actual = Yaml::dump($actual, PHP_INT_MAX);
34
35
36
Assert::assertEquals($expected, $actual);
0 commit comments