Browse Source

Removed special handling of varExporter from Handler's constructor

2.1.0
Dustin Wilson 10 months ago
parent
commit
ce6469f954
  1. 4
      lib/Catcher/Handler.php

4
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);
}
}

Loading…
Cancel
Save