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 83a1178 commit c4eed56Copy full SHA for c4eed56
Legacy/ConstraintTraitForV7.php
@@ -11,6 +11,8 @@
11
12
namespace Symfony\Bridge\PhpUnit\Legacy;
13
14
+use SebastianBergmann\Exporter\Exporter;
15
+
16
/**
17
* @internal
18
*/
@@ -31,6 +33,15 @@ protected function additionalFailureDescription($other): string
31
33
return $this->doAdditionalFailureDescription($other);
32
34
}
35
36
+ protected function exporter(): Exporter
37
+ {
38
+ if (null !== $this->exporter) {
39
+ $this->exporter = new Exporter();
40
+ }
41
42
+ return $this->exporter;
43
44
45
protected function failureDescription($other): string
46
{
47
return $this->doFailureDescription($other);
0 commit comments