Remove superfluous comments

This commit is contained in:
Sebastian Bergmann 2023-09-08 06:37:51 +02:00
parent b2d7136397
commit 29d9871476
No known key found for this signature in database
GPG Key ID: 4AA394086372C20A
1 changed files with 0 additions and 14 deletions

View File

@ -34,17 +34,6 @@ use SebastianBergmann\RecursionContext\Context;
use SplObjectStorage;
use UnitEnum;
/**
* A nifty utility for visualizing PHP variables.
*
* <code>
* <?php
* use SebastianBergmann\Exporter\Exporter;
*
* $exporter = new Exporter;
* print $exporter->export(new Exception);
* </code>
*/
final class Exporter
{
/**
@ -204,9 +193,6 @@ final class Exporter
return $array;
}
/**
* Recursive implementation of export.
*/
private function recursiveExport(mixed &$value, int $indentation, ?Context $processed = null): string
{
if ($value === null) {