diff --git a/src/Framework/Dumper.php b/src/Framework/Dumper.php index 2f343db5..6d3bf045 100644 --- a/src/Framework/Dumper.php +++ b/src/Framework/Dumper.php @@ -14,8 +14,11 @@ class Dumper { public static $maxLength = 70; + public static $maxDepth = 10; + public static $dumpDir = 'output'; + public static $maxPathSegments = 3; diff --git a/src/Runner/Test.php b/src/Runner/Test.php index c06bab16..72d873c1 100644 --- a/src/Runner/Test.php +++ b/src/Runner/Test.php @@ -19,7 +19,6 @@ class Test PASSED = 2, SKIPPED = 3; - /** @var string|null */ public $title; diff --git a/tests/Framework/Dumper.toPhp.phpt b/tests/Framework/Dumper.toPhp.phpt index 846e090a..601485b9 100644 --- a/tests/Framework/Dumper.toPhp.phpt +++ b/tests/Framework/Dumper.toPhp.phpt @@ -9,7 +9,9 @@ require __DIR__ . '/../bootstrap.php'; class Test { public $x = [10, null]; + protected $y = 'hello'; + private $z = 30.0; }