Skip to content

Commit b91e994

Browse files
1 parent 2fc000a commit b91e994

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Framework/TestCase.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use SebastianBergmann\GlobalState\Snapshot;
1212
use SebastianBergmann\GlobalState\Restorer;
1313
use SebastianBergmann\GlobalState\Blacklist;
14-
use SebastianBergmann\Exporter\Context;
14+
use SebastianBergmann\RecursionContext\Context;
1515
use SebastianBergmann\Exporter\Exporter;
1616

1717
/**
@@ -1618,8 +1618,8 @@ public static function onConsecutiveCalls()
16181618
}
16191619

16201620
/**
1621-
* @param mixed $data The data to export as a string
1622-
* @param SebastianBergmann\Exporter\Context $processed Contains all objects and arrays that have previously been processed
1621+
* @param mixed $data The data to export as a string
1622+
* @param SebastianBergmann\RecursionContext\Context $processed Contains all objects and arrays that have previously been processed
16231623
* @return string
16241624
* @since Method available since Release 3.2.1
16251625
*/
@@ -1629,7 +1629,7 @@ protected function dataToString(&$data, $processed = null)
16291629
$exporter = new Exporter();
16301630

16311631
if (!$processed) {
1632-
$processed = new Context();
1632+
$processed = new Context;
16331633
}
16341634

16351635
$processed->add($data);

0 commit comments

Comments
 (0)