From 7a4acd5f2fe3ea9fb9b3f110c15fd624e1a5a0fa Mon Sep 17 00:00:00 2001 From: Sibghatullah Mujaddid Date: Thu, 11 Mar 2021 09:22:09 +0800 Subject: [PATCH] Change exception's handler ignore method to public --- src/Illuminate/Foundation/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Exceptions/Handler.php b/src/Illuminate/Foundation/Exceptions/Handler.php index 38c29a3996c7..7c8b29c3baf8 100644 --- a/src/Illuminate/Foundation/Exceptions/Handler.php +++ b/src/Illuminate/Foundation/Exceptions/Handler.php @@ -191,7 +191,7 @@ public function map($from, $to = null) * @param string $class * @return $this */ - protected function ignore(string $class) + public function ignore(string $class) { $this->dontReport[] = $class;