We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e912dc commit 5efc940Copy full SHA for 5efc940
config/exception-notify.php
@@ -13,7 +13,6 @@
13
use Guanguans\LaravelExceptionNotify\Pipelines\ToHtmlPipeline;
14
use Guanguans\LaravelExceptionNotify\Pipelines\ToMarkdownPipeline;
15
use Guanguans\LaravelExceptionNotify\Pipelines\TrimPipeline;
16
-use Guanguans\LaravelExceptionNotify\Pipelines\VarExportPipeline;
17
18
return [
19
/*
@@ -133,7 +132,6 @@
133
132
|
134
*/
135
'pipeline' => [
136
- VarExportPipeline::class,
137
TrimPipeline::class,
138
],
139
src/Collectors/Collector.php
@@ -47,6 +47,6 @@ protected function applyPipeCollect()
47
48
public function __toString()
49
{
50
- return (string) var_export($this->applyPipeCollect(), true);
+ return (string) varexport($this->applyPipeCollect(), true);
51
}
52
0 commit comments