From ce6469f954887a870d8d976c415c59600512b8e2 Mon Sep 17 00:00:00 2001 From: Dustin Wilson Date: Tue, 27 Jun 2023 11:26:29 -0500 Subject: [PATCH] Removed special handling of varExporter from Handler's constructor --- lib/Catcher/Handler.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/Catcher/Handler.php b/lib/Catcher/Handler.php index 4bd2713..4ca0245 100644 --- a/lib/Catcher/Handler.php +++ b/lib/Catcher/Handler.php @@ -73,10 +73,6 @@ abstract class Handler { foreach ($options as $key => $value) { $this->setOption($key, $value); } - - if ($this->_varExporter === null) { - $this->_varExporter = fn(mixed $value): string|bool => print_r($value, true); - } }