From 29d9871476f4302d569890d8782d7782daf8be9a Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Fri, 8 Sep 2023 06:37:51 +0200 Subject: [PATCH] Remove superfluous comments --- src/Exporter.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/Exporter.php b/src/Exporter.php index 2647cd3..307b696 100644 --- a/src/Exporter.php +++ b/src/Exporter.php @@ -34,17 +34,6 @@ use SebastianBergmann\RecursionContext\Context; use SplObjectStorage; use UnitEnum; -/** - * A nifty utility for visualizing PHP variables. - * - * - * export(new Exception); - * - */ 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) {