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 281e8a1 commit d8f44e3Copy full SHA for d8f44e3
src/Illuminate/Foundation/Configuration/Exceptions.php
@@ -97,6 +97,18 @@ public function dontReport(string $class)
97
return $this;
98
}
99
100
+ /**
101
+ * Do not report duplicate exceptions.
102
+ *
103
+ * @return $this
104
+ */
105
+ public function dontReportDuplicates()
106
+ {
107
+ $this->handler->dontReportDuplicates();
108
+
109
+ return $this;
110
+ }
111
112
/**
113
* Indicate that the given attributes should never be flashed to the session on validation errors.
114
*
0 commit comments